MongoDB\BSON\UTCDateTime::__toString
PHP function
Edit on GitHub ✎
(mongodb >=1.0.0)
Returns the string representation of this UTCDateTime
Description
MongoDB\BSON\UTCDateTime::__toString(): string
Parameters Parameters
Return Values
Returns the string representation of this UTCDateTime.
Examples
MongoDB\BSON\UTCDateTime::__toString() example
php
<?php
$utcdatetime = new MongoDB\BSON\UTCDateTime(1416445411987);
var_dump((string) $utcdatetime);
?>The above example will output:
output
string(13) "1416445411987"See Also
- BSON Types: Date