MongoId::getTimestamp

(PECL mongo >= 1.0.1)

MongoId::getTimestamp获取新纪元时间到 id 创建时的秒数。

说明

public MongoId::getTimestamp ( void ) : int

返回 id 创建时运行 time() 同样的东西。

参数

此函数没有参数。

返回值

获取新纪元时间到 id 创建时的秒数。 仅储存了四个字节的时间戳,所以 MongoDate 是储存更精准、更广范围时间的更佳选择。

add a note add a note

User Contributed Notes 2 notes

up
1
le6o
8 years ago
There is no equivalent for this method in the new extension, so instead use…

<?php
$id
= new \MongoDB\BSON\ObjectID('42cf58a2e1c5ede216cb7f05');
$timestamp = hexdec(substr($id, 0, 8));
?>
To Top