PHP 7.0.6 Released

MongoDB\BSON\ObjectID::__construct

(mongodb >=1.0.0)

MongoDB\BSON\ObjectID::__constructConstruct a new ObjectID

Description

final public MongoDB\BSON\ObjectID::__construct ([ string $id ] )

Parameters

id (string)

A 24-character hexadecimal string. If not provided, the driver will generate an ObjectID.

Errors/Exceptions

Examples

Example #1 MongoDB\BSON\ObjectID::__construct() example

<?php

var_dump
(new MongoDB\BSON\ObjectId());

var_dump(new MongoDB\BSON\ObjectId('000000000000000000000001'));

?>

The above example will output something similar to:

object(MongoDB\BSON\ObjectID)#1 (1) {
  ["oid"]=>
  string(24) "56732d3dda14d81214634921"
}
object(MongoDB\BSON\ObjectID)#1 (1) {
  ["oid"]=>
  string(24) "000000000000000000000001"
}

User Contributed Notes

fejlesztes at letscode dot hu
3 months ago
If you pass NULL to the __construct() method, it wont throw exceptions, nor errors, but prematurely ends the PHP processing (so it produced an 502 response over nginx), not like the legacy MongoId class.
To Top