PHP:Strtotime /日期忽略时区?
有一些带有 strtotime 的 trouslb,通过示例更容易展示:)
date_default_timezone_set('Europe/London'); // Set timezone to local /
echo date("d/m/Y", strtotime("1-6-2003")); // Expected: 01/06/2003 Got: 01/06/2003
echo date("d/m/Y", strtotime("16-12-2003")); // Expected: 16/12/2003 Got: 16/12/2003
echo date("d/m/Y", strtotime("10-12-03")); // Expected: 10/12/2003 Got: 03/12/2010
有什么想法可以解决这个问题吗?我正在使用 strtotime 来尝试消除用户以不同格式输入日期的问题。
感谢您的阅读,
里克。
having some trouslb with strtotime, its easier to show by example :)
date_default_timezone_set('Europe/London'); // Set timezone to local /
echo date("d/m/Y", strtotime("1-6-2003")); // Expected: 01/06/2003 Got: 01/06/2003
echo date("d/m/Y", strtotime("16-12-2003")); // Expected: 16/12/2003 Got: 16/12/2003
echo date("d/m/Y", strtotime("10-12-03")); // Expected: 10/12/2003 Got: 03/12/2010
Any ideas how to get around this problem? I am using strtotime to try and negate problems with users entering dates in different formats.
Thank you for reading,
Rik.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
strtotime
不支持这种日期格式。有关受支持格式的列表,请参阅文档。下次再读一下文档。strtotime
does not support that kind of date format. See the documentation for a list of supported formats. Read the documentation next time.