php中的倒数日期显示

发布于 2024-07-20 13:01:28 字数 118 浏览 3 评论 0原文

我想显示特定日期缺失的天数。 换句话说,我想显示类似的内容:

距离大型活动还有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吲‖鸣 2024-07-27 13:01:29
<?php

    $event_date = '2010-01-01 00:00:00';
    $event_time = strtotime($event_date);
    $diff = $event_time - time();
    echo floor($diff/(24*60*60)).' days to go for the great event';

?>

注意:我完全回避了任何时区考虑因素,因此,请务必阅读与使用 PHP datetime 函数相关的时区问题。

<?php

    $event_date = '2010-01-01 00:00:00';
    $event_time = strtotime($event_date);
    $diff = $event_time - time();
    echo floor($diff/(24*60*60)).' days to go for the great event';

?>

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.

莫多说 2024-07-27 13:01:29

如果我有 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文