MongoDB\BSON\ObjectID
PHP Manual

MongoDB\BSON\ObjectID::__construct

(mongodb >=1.0.0)

MongoDB\BSON\ObjectID::__constructConstruit un nouvel ObjectID

Description

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

Liste de paramètres

id (string)

Une chaîne héxadécimale de 24 caractères. Si elle n'est pas fournie, le driver génèrera un ObjectID.

Erreurs / Exceptions

Exemples

Exemple #1 Exemple avec MongoDB\BSON\ObjectID::__construct()

<?php

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

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

?>

L'exemple ci-dessus va afficher quelque chose de similaire à :

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

Voir aussi


MongoDB\BSON\ObjectID
PHP Manual