MongoDB\BSON\UTCDateTime::__toString

(mongodb >=1.0.0)

MongoDB\BSON\UTCDateTime::__toStringReturns the string representation of this UTCDateTime

Descrição

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

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Returns the string representation of this UTCDateTime.

Exemplos

Exemplo #1 MongoDB\BSON\UTCDateTime::__toString() example

<?php

$utcdatetime 
= new MongoDB\BSON\UTCDateTime(1416445411987);
var_dump((string) $utcdatetime);

?>

O exemplo acima irá imprimir:

string(13) "1416445411987"

Veja Também