以 dd/mm/yyyy 格式指定日期时,strtotime() 不返回正确的值
我想将 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'
知道为什么吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据 php,有效的 php 格式在此处说明。所以基本上你给的都是无效的。
或者,您可以使用 mktime, date_parse_from_format 或 date_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
strtotime
会尽力猜测给定字符串时的含义,但它无法处理所有日期格式。在您的示例中,它可能认为您正在尝试引用无效的第 24 个月,并返回 0,然后将该日期视为 unix 纪元(您获得的日期)。您可以使用 mktime() 和 explode() 函数,如下所示:
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:
正如你所说,
日期(“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