php中的倒数日期显示
我想显示特定日期缺失的天数。 换句话说,我想显示类似的内容:
距离大型活动还有 X 天
距离使用 PHP 和服务器时间的
I would like to show the number of days missing for a specific date. In other words, I want to display something like:
X days to go for the great event
using PHP and the server time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
注意:我完全回避了任何时区考虑因素,因此,请务必阅读与使用 PHP
datetime
函数相关的时区问题。Note: I'm totally side stepping any timezone considerations, so, be sure you read up on timezone issues associated with using the PHP
datetime
functions.如果我有 15 名代表,jakemcgraw 的答案将得到我的投票。 :)
不过,您可能想使用 mktime() 而不是 strtotime()。
jakemcgraw's answer would have my vote, had I 15 rep. :)
You might want to use mktime() instead of strtotime(), though.