PHP 获取开始日期和结束日期之间的天数
如果我有两个变量 $startDate="YYYYmmdd"
和 $endDate="YYYYmmdd"
,我怎样才能获得它们之间的天数?
谢谢。
If I have two variables $startDate="YYYYmmdd"
and $endDate="YYYYmmdd"
, how can I get the number of days between them please?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
如果您使用的是 PHP 5.3,则可以使用新的
DateTime
类:如果没有,您将需要使用
strtotime
:
If you are using PHP 5.3, you can use the new
DateTime
class:If not, you will need to use
strtotime
:这是示例代码
Here is the sample code
我发现获取它们之间的天数的最简单方法是将开始日期和结束日期转换为 Unix 时间戳并对其进行减法。
然后,如果您想格式化日期,请使用 PHP 日期函数将其转换回来。
The easiest way I have found to get the number of days between them is by converting the Start and End dates to Unix timestamps and doing an subtract on them.
Then if you want to format the date convert it back using the PHP date function.
这个应该是精确的并且可以与 PHP << 5.2
this one should be precise and usable with PHP < 5.2
这是我的方法,在大多数情况下基于残酷的搜索,只是因为按秒除法(周、月、年)可能不会返回精确的结果,例如在处理闰年时。
?>
Here's my approach, based upon a brutal search in most cases, just because divisions by seconds (for weeks, months, years) may not return precise results, as while working with leap years for example.
?>