MongoDB\BSON\ObjectID
PHP Manual

MongoDB\BSON\ObjectID::__construct

(mongodb >=1.0.0)

MongoDB\BSON\ObjectID::__constructConstruct a new ObjectID

Beschreibung

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

Parameter-Liste

id (string)

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

Fehler/Exceptions

Beispiele

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

<?php

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

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

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

Siehe auch


MongoDB\BSON\ObjectID
PHP Manual