(mongodb >=1.0.0)
MongoDB\BSON\Timestamp::__toString — 返回此 Timestamp 的字符串表示形式
此函数没有参数。
返回此 Timestamp 的字符串表示形式。
示例 #1 MongoDB\BSON\Timestamp::__toString() 示例
<?php
$timestamp = new MongoDB\BSON\Timestamp(1234, 5678);
var_dump((string) $timestamp);
?>
上面的示例将输出类似于
string(11) "[1234:5678]"