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

发布于 2024-08-06 23:55:02 字数 362 浏览 3 评论 0原文

这是我的代码:

$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

怎么了?

先感谢您。

This is my code:

$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);

And this is my output:

1247065260

2009-07-08 17:01

2009-07-08 17:31

What's wrong?

Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

捎一片雪花 2024-08-13 23:55:02

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

t 是当月的天数,因此 31

Your parameters for date() are wrong. You should use date('Y-m-d H:i', $timestamp).

t is the number of days of the current month, therefore 31.

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