(mongodb >=1.0.0)
MongoDB\BSON\UTCDateTime::__toString — 返回此 UTCDateTime 的字符串表示形式
此函数没有参数。
返回此 UTCDateTime 的字符串表示形式。
示例 #1 MongoDB\BSON\UTCDateTime::__toString() 示例
<?php
$utcdatetime = new MongoDB\BSON\UTCDateTime(1416445411987);
var_dump((string) $utcdatetime);
?>
上面的示例将输出
string(13) "1416445411987"