我看到utcdatetime对象有点奇怪:

$dt = new UTCDateTime(time());
var_dump($dt);

输出:
object(MongoDB\BSON\UTCDateTime)#208 (1) {
  ["milliseconds"]=>
  int(1478644003)
}

好的,这个时间戳是2016年11月8日。
但当我做以下事情时:
var_dump($dt->toDateTime());

输出:
object(DateTime)#206 (3) {
  ["date"]=>
  string(26) "1970-01-18 02:44:04.105000"
  ["timezone_type"]=>
  int(1)
  ["timezone"]=>
  string(6) "+00:00"
}

日期重置为1970年:(这可能是什么原因?我正确地使用了这些物品吗?它应该是utcdatetime-http://php.net/manual/en/mongodb-bson-utcdatetime.todatetime.php的日期时间表示。

最佳答案

为代码选择任何一个步骤
步骤1:

new MongoDB\BSON\UTCDateTime( (int) $timestamp * 1000 );

步骤2:
您可以使用下面的函数而不是直接赋值。示例:Mongodate('1542957787');
function mongoDate( $timestamp = '' ) {

    if ( empty($timestamp) && $timestamp != 0 ) {
        return false;
    }


    if ( strlen( (string) $timestamp ) == 13 ) { // timestamp length in MilliSeconds
        return new MongoDB\BSON\UTCDateTime( (int) $timestamp );
    }

    return new MongoDB\BSON\UTCDateTime( (int) $timestamp * 1000 );

}

10-02 19:37