MongoDB\BSON\UTCDateTime
PHP Manual

MongoDB\BSON\UTCDateTime::__toString

(mongodb >=1.0.0)

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

Descrierea

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

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns the string representation of this UTCDateTime.

Erori/Excepții

Exemple

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

<?php

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

?>

Exemplul de mai sus va afișa:

string(13) "1416445411987"

A se vedea și


MongoDB\BSON\UTCDateTime
PHP Manual