MongoDB\BSON\Timestamp::__construct

(mongodb >=1.0.0)

MongoDB\BSON\Timestamp::__construct构造一个新的 Timestamp

描述

final public MongoDB\BSON\Timestamp::__construct(int $increment, int $timestamp)

参数

increment (int)

表示给定秒内操作递增序的 32 位整数。

timestamp (int)

表示自 Unix 纪元以来的秒数的 32 位整数。

错误/异常

示例

示例 #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)
}
添加备注

用户贡献笔记

此页面没有用户贡献的笔记。
To Top