使用序数值时 php strtotime 函数出现问题
在 strtotime 中使用序数值时,有时会得到意想不到的结果。例如,为什么
date("M j", strtotime("second Tuesday February 2011"))
结果是“Feb 15”(实际上是 2011 年的第三星期二?
I sometime get unexpected results when using ordinal values with strtotime. For example, why does
date("M j", strtotime("second Tuesday February 2011"))
result in "Feb 15" (which is actually the third Tuesday in 2011?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你漏掉了一个‘of’。
PHP 版本:
文档 告诉你造成这种情况的原因:
You are missing an 'of'.
PHP Version:
The documentation tells you the cause for this:
strtotime() 手册告诉你你想要什么
简而言之,这是您正在使用的版本中的错误。
如果您正在寻找某种适用的修复方法,则删除序数值似乎可行(就好像第一/第二/第三表示整周)
The manual for strtotime() tells what you seek
In short, it's a bug in the version you're using.
If you're looking for some sort of applicable fix, dropping the ordinal value seems to work (as if the first/second/third indicate full weeks)
依赖 strtotime 来处理序数日期计算似乎并不安全——至少在 PHP 版本中是这样。 5.3. (我已经用 5.2.9 和 5.2.11 进行了测试,尽管在线文档中声称该错误已在 5.2.7 中修复,但两者都不起作用。)
按照建议添加“of”显然仅适用于 php 5.3+ 并删除序数完全将返回“第一次”出现,但其他序数将休息 7 天。
PHP 5.2 的最佳解决方案似乎是这样的:
It seems that it's not safe to rely on strtotime to deal with ordinal date computations -- at least in versions of PHP < 5.3. (I've tested with 5.2.9 and 5.2.11 and neither works despite the claim in the online documentation that the bug was fixed in 5.2.7.)
Adding "of" as suggested apparently only works in php 5.3+ and dropping the ordinal altogether will return the "first" occurrence, but other ordinals will be 7 days off.
The best solution for PHP 5.2 seems to be something like this: