(mongodb >=1.0.0)
MongoDB\BSON\Timestamp::__construct — 构造一个新的Timestamp
示例 #1 MongoDB\BSON\Timestamp::__construct() 示例
<?php
$timestamp = new MongoDB\BSON\Timestamp(1234, 5678);
?>以上示例将输出
object(MongoDB\BSON\Timestamp)#1 (2) {
["increment"]=>
int(1234)
["timestamp"]=>
int(5678)
}