前端之家收集整理的这篇文章主要介绍了
到目前为止在php和mongodb中的时间戳,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我花了3天时间试图
解决这个问题但没有成功.
我正在使用MongoDB
PHP库,我正在尝试使用
PHP Docs中的示例转换有效日期中的时间戳,但它总是返回1970-01-17.
代码是:
$utcdatetime = new MongoDB\BSON\UTCDateTime(1453939200);
$datetime = $utcdatetime->toDateTime();
var_dump($datetime);
@L_
502_2@声明构造
函数接受一个表示时间戳的整数参数(以毫秒为单位),您将以秒为单位提供时间戳,因此结果无效.
将值乘以1000以获得时间戳(以毫秒为单位),从而返回转换的有效日期时间对象:
$timestamp = 1453939200 * 1000;
$utcdatetime = new MongoDB\BSON\UTCDateTime($timestamp);
$datetime = $utcdatetime->toDateTime();
var_dump($datetime);