gpt4 book ai didi

PHP:strtotime() 给了我错误的时间戳

转载 作者:行者123 更新时间:2023-12-04 22:35:47 29 4
gpt4 key购买 nike

这是我的代码:

$testtime = str_replace('.', '-', '2009.07.08 17:01');
$timestamp = strtotime($testtime);
echo $timestamp . "\n";
echo $testtime . "\n";
echo date('Y-m-d H:t', $timestamp);

这是我的输出:

1247065260

2009-07-08 17:01

2009-07-08 17:31

怎么了?

提前谢谢你。

最佳答案

date() 的参数错误。您应该使用 date('Y-m-d H:i', $timestamp)

t 是当月的天数,因此 31.

关于PHP:strtotime() 给了我错误的时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1509629/

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