gpt4 book ai didi

php - strtotime 年份为 2 位数字格式

转载 作者:行者123 更新时间:2023-12-04 13:49:21 24 4
gpt4 key购买 nike

你好,有人可以用非标准格式解释 strtotime 函数的行为。

echo date("d-m-Y",strtotime('02-12-10')) .'<br>'; //10-12-2002
echo date("d-m-Y",strtotime('09.09.10')) .'<br>'; //02-09-2010 --How this is interpreted?


echo date("d-m-Y",strtotime('02-12-2010')) .'<br>'; //02-02-2010
echo date("d-m-Y",strtotime('09.09.2010')) .'<br>'; //09-09-2010

我想将 dd.mm.yy(09.09.10) 格式的字符串转换为日期时间格式。

最佳答案

strtotime() 在这种情况下可能有点不稳定。它旨在识别标准的美国日期格式。

如果您可以使用 PHP > 5.3,请考虑使用 DateCreateFromFormat它具有接受预定义格式字符串来解析传入数据的巨大优势。

在 5.3 之前的平台上,strptime()似乎提供了第二好的选择。它在 Windows 上不可用,并且有一些小问题 - 请务必在使用前阅读手册页。

关于php - strtotime 年份为 2 位数字格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3626052/

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