MongoDB\BSON\ObjectID
PHP Manual

MongoDB\BSON\ObjectID::__toString

(mongodb >=1.0.0)

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

Descripción

final public string MongoDB\BSON\ObjectID::__toString ( void )

Parámetros

Esta función no tiene parámetros.

Valores devueltos

Returns the hexidecimal representation of this ObjectID.

Errores/Excepciones

Ejemplos

Ejemplo #1 MongoDB\BSON\ObjectID::__toString() example

<?php

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

?>

El resultado del ejemplo sería algo similar a:

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

Ver también


MongoDB\BSON\ObjectID
PHP Manual