日期 php 中的日期差异?
php 有没有快速计算日期差异的方法?例如:
$date1 = '2009-11-12 12:09:08';
$date2 = '2009-12-01 08:20:11';
然后进行计算,$date2 减去 $date1
我阅读了 php.net 文档,但没有运气。有没有快速的方法来做到这一点?
Is there a quick way to calculate date difference in php? For example:
$date1 = '2009-11-12 12:09:08';
$date2 = '2009-12-01 08:20:11';
And then do a calculation, $date2 minus $date1
I read php.net documentation, but no luck. Is there a quick way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议使用 date->diff 函数,如下例所示:
请参阅 http://www.php.net/manual/en/datetime.diff.php
I would recommend to use date->diff function, as in example below:
see http://www.php.net/manual/en/datetime.diff.php
strtotime 会将您的日期字符串转换为 unix 时间戳。 (自 UNIX 纪元以来的秒数。
strtotime will convert your date string to a unix time stamp. (seconds since the unix epoch.
下面的代码将通过取出差异来给出天数的输出
两个日期之间..
Below code will give the output for number of days, by taking out the difference
between two dates..