在 PHP 中计算日期间隔
可能的重复:
在 PHP 中减去日期
我有两个 Unix 时间戳,如何计算之间的总天数他们?
Possible Duplicate:
Subtracting dates in PHP
I have two Unix timestamps, how can I calculate the total number of days between them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将它们转换为 UNIX 时间戳(如果还没有),然后就可以了
Convert them to UNIX-timestamp (if they arent already), then just
像这样的事情应该可以解决问题:
$days = (strtotime($timestamp1)-strtotime($timestamp2))/(60*60*24);
something like this should do the trick:
$days = (strtotime($timestamp1)-strtotime($timestamp2))/(60*60*24);
这段代码应该可以解决问题
This code should do the trick