我想在 php 中计算周、月、年的日期差异?
我是 PHP 新手,我想知道如何计算 php 中的日期差异。
我的日期是 mktime()
格式。
请确认这对我来说是当前问题。
I am new here and php i want to know how to calculate date difference in php.
My date is mktime()
formate.
Please confirm this is current issue for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 PHP 中要计算两个日期之间的差异,您必须使用 mktime() 函数,然后找出以秒为单位的差异。
示例代码:
In PHP to calculate the difference in two dates, you have to use
mktime()
function and then find out the difference in seconds.Sample Code :
PHP 有一个函数
date_diff
,它可以计算日期差。请参阅: http://php.net/manual/en/function.date-diff .php
PHP has the function
date_diff
, which computes the date difference.See: http://php.net/manual/en/function.date-diff.php