我目前正在为我的网站创建一个脚本,该脚本将一直倒计时到该周的星期日。
例:
用户在星期六的上午11:30访问该站点,他们将受到以下欢迎:
“此页面的下一次更新时间为0天12小时30分钟。”
有任何想法吗?
最佳答案
您可以使用此小技巧来获取下周日午夜的时间戳记:
$sunday = strtotime('next Sunday');
有关如何将其格式化为有用的内容,请参见this answer。现在我明白了:
print_r(dateDifference($sunday, time()));
Array
(
[years] => 0
[months_total] => 0
[months] => 0
[days_total] => 0
[days] => 0
[hours_total] => 4
[hours] => 4
[minutes_total] => 256
[minutes] => 16
[seconds_total] => 15387
[seconds] => 27
)
关于php - 倒数至周日,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9447348/