MongoDB\BSON\UTCDateTime::__toString

(mongodb >=1.0.0)

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

Opis

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

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Returns the string representation of this UTCDateTime.

Przykłady

Przykład #1 MongoDB\BSON\UTCDateTime::__toString() example

<?php

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

?>

Powyższy przykład wyświetli:

string(13) "1416445411987"

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top