PHP:strtotime 问题

发布于 2024-11-27 17:46:49 字数 138 浏览 1 评论 0原文

strtotime 这是怎么回事?

$today = date('m.d.y H:i', time());
echo strtotime($today);

它没有输出任何内容...发生了什么事?

What's going on with strtotime here?

$today = date('m.d.y H:i', time());
echo strtotime($today);

It does not output anything... What's going on?

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

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

发布评论

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

评论(4

方觉久 2024-12-04 17:46:49

strtotime 只能解析某些格式,而不是任何< /em> 随机组合的数字和字母。 “mdy H:i”不是 strtotime 可以解析的格式。您需要使用 strptime 手动解析它。

strtotime can only parse certain formats, not any random assortment of numbers and letters. "m.d.y H:i" is not a format strtotime can parse. You'll need to parse that manually using, for example, strptime.

千年*琉璃梦 2024-12-04 17:46:49

如果您知道示例中日期的源格式('mdy H:i'),请使用 DateTime::createFromFormat()

print DateTime::createFromFormat('m.d.y H:i',$date)->getTimestamp()

手册
DateTime::createFromFormat
日期时间::getTimestamp

Use DateTime::createFromFormat() if you know source format of date ('m.d.y H:i') in your example

print DateTime::createFromFormat('m.d.y H:i',$date)->getTimestamp()

Manual
DateTime::createFromFormat
DateTime::getTimestamp

最后的乘客 2024-12-04 17:46:49

strtotime 适用于美国日期。尝试

$today = date('m/d/y H:i', time());
echo strtotime($today);

strtotime works with US dates. Try

$today = date('m/d/y H:i', time());
echo strtotime($today);
稍尽春風 2024-12-04 17:46:49

strtotime() 是一个在输出日期之前格式化日期的函数。日期似乎已经在 date() 函数中格式化,并且您没有尝试在第二行中格式化日期。

正确的代码

$today = date("Y-m-d-H.i");
$datenumber = date('Y-m-d',strtotime($today));
$timenumber = date('H.i',strtotime($today));

您可以回显所有这些变量。

strtotime() is a function for formatting the date, before it is outputted. It seems like the date is already formated in the date() function, and that you make no attempt to format the date in the second line.

Correct code

$today = date("Y-m-d-H.i");
$datenumber = date('Y-m-d',strtotime($today));
$timenumber = date('H.i',strtotime($today));

You can echo all those variables.

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