所以我只是喜欢strtotime,所以我在玩它,所以我想制作一个小脚本,显示你要等到午夜多久。我做到了:
echo(strtotime("now") . "<br>");
echo(strtotime("23:59:59") . "<br>");
这就是结果
1552400241
1552435199
但这是不正确的,因为这大约是35000(9.72222222 h)秒,现在是15:20,所以直到午夜大约08小时,我在做什么错了?
编辑
我的时区是CET(欧洲中部时间) UTC / GMT +1小时
和
date('Y-m-d H:i:s', strtotime('now'));
说
2019-03-12 14:29:33