以 dd/mm/yyyy 格式指定日期时,strtotime() 不返回正确的值

发布于 2024-09-24 20:30:14 字数 322 浏览 9 评论 0 原文

我想将 dd/mm/yyyy 格式的日期 24/09/2010 转换为 yyyy 格式的 2010-09-24 -mm-dd

这可行:

date("Y-m-d",strtotime("09/24/2010"));

但这不行:

date("Y-m-d",strtotime("24/09/2010")); // it returns '1970-01-01'

知道为什么吗?

I want to convert date 24/09/2010 in format dd/mm/yyyy to 2010-09-24 in format yyyy-mm-dd.

This works:

date("Y-m-d",strtotime("09/24/2010"));

But this does not:

date("Y-m-d",strtotime("24/09/2010")); // it returns '1970-01-01'

Any idea why?

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

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

发布评论

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

评论(3

耳钉梦 2024-10-01 20:30:14

根据 php,有效的 php 格式在此处说明。所以基本上你给的都是无效的。

或者,您可以使用 mktime, date_parse_from_formatdate_create_from_format

according to php, the valid php formats are stated here. So basically what you gave is invalid.

Alternatively, you can use mktime, date_parse_from_format or date_create_from_format

薄情伤 2024-10-01 20:30:14

strtotime 会尽力猜测给定字符串时的含义,但它无法处理所有日期格式。在您的示例中,它可能认为您正在尝试引用无效的第 24 个月,并返回 0,然后将该日期视为 unix 纪元(您获得的日期)。

您可以使用 mktime()explode() 函数,如下所示:

$date = "24/09/2010";
$dateArr = explode("/",$date);
$timeStamp = mktime(0,0,0,$dateArr[1],$dateArr[0],$dateArr[2]);
$newFormat = date("Y-m-d",$timeStamp);

strtotime does its best to guess what you mean when given a string, but it can't handle all date formats. In you example, it is probably thinking that you are trying to refer to the 24th month, which isn't valid, and returns 0, which date then treats as the unix epoch (the date you got).

you can get around this using the mktime() and explode() functions, like so:

$date = "24/09/2010";
$dateArr = explode("/",$date);
$timeStamp = mktime(0,0,0,$dateArr[1],$dateArr[0],$dateArr[2]);
$newFormat = date("Y-m-d",$timeStamp);
梦里的微风 2024-10-01 20:30:14

正如你所说,
日期(“Ymd”,strtotime(“09/24/2010”))
会起作用,因为日期格式--“09/24/2010”是正确的,
但“24/09/2010”不是正确的日期格式。
您可以在此处找到有用的内容

As you say,
date("Y-m-d",strtotime("09/24/2010"))
will work,because the date format--"09/24/2010"is correct,
but "24/09/2010" is not the correct date format.
you can find something useful here

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