MongoDB\BSON\ObjectId::__toString

(mongodb >=1.0.0)

MongoDB\BSON\ObjectId::__toStringReturns the hexidecimal representation of this ObjectId

Descrizione

final public MongoDB\BSON\ObjectId::__toString(): string

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns the hexidecimal representation of this ObjectId.

Esempi

Example #1 MongoDB\BSON\ObjectId::__toString() example

<?php

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

?>

Il precedente esempio visualizzerà qualcosa simile a:

string(24) "56731b49da14d8747d701211"
string(24) "000000000000000000000001"