PHP:Strtotime /日期忽略时区?

发布于 2024-11-30 08:47:52 字数 516 浏览 1 评论 0原文

有一些带有 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 技术交流群。

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

发布评论

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

评论(1

夜未央樱花落 2024-12-07 08:47:52

strtotime 不支持这种日期格式。有关受支持格式的列表,请参阅文档。下次再读一下文档。

strtotime does not support that kind of date format. See the documentation for a list of supported formats. Read the documentation next time.

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