在 mongoDB 中获取时差?
我正在使用 PHP + mongoDB。
如何获得两个时间值之间的时间差?
我有一个实时值,它是字符串
$realtime = "2010-01-01 12:00:00";
,另一个值是 unixstamp 时间,
$mongotime = new Mongodate(strtotime($realtime));
所以我可以使用字符串时间值或 unix 时间戳。
但我不确定如何获取两个值之间的时间差。
我应该减去两个 $mongotime 值吗?它会给我以秒为单位的时间差吗?
I'm using PHP + mongoDB.
How can I get a time difference between two time values?
I have a real time value which is string
$realtime = "2010-01-01 12:00:00";
and another value which is unixstamp time,
$mongotime = new Mongodate(strtotime($realtime));
So I can use either a string time value or unix time stamp.
But I'm not sure the way to get time difference between two values.
Should I just subtract two $mongotime values and does it give me a time difference in seconds?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你有 2 个 unix 时间戳...
这将给出 2 个时间戳之间的分钟数...
If you have 2 unix timestamps...
This will give number of mins between the 2 timestamps...