gpt4 book ai didi

php - strtotime ('today' ) 返回不正确的时间?

转载 作者:可可西里 更新时间:2023-10-31 22:18:55 25 4
gpt4 key购买 nike

我正在尝试创建一个从用户当前日期开始的选择列表。我想要它,以便它以 unix 时间戳格式设置为午夜。

这就是我所做的一切:

$today = strtotime('today');
echo $today;

这是我的结果:

1333144800

根据 Epoch Converter,这是:2012 年 3 月 30 日星期五 22:00:00 GMT(有几个小时的误差。)

最佳答案

如果您希望 strtotime() 返回相对于 UTC 的时间戳(00:00:00 UTC 而不是例如 00:00:00 UTC+2,如果您的系统设置为时区偏移量为 2 小时UTC/GMT),您需要指定:

$today = strtotime('today UTC');

关于php - strtotime ('today' ) 返回不正确的时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9957616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com