当我运行以下代码时,我得到4月30日而不是27日.
strtotime("Last Friday April 2012");
我尝试将它作为星期四运行,而我又回到了第29位.
以下所有工作都很好.
strtotime("First Sunday February 2012"); strtotime("Third Monday February 2012"); strtotime("Second Monday October 2012"); strtotime("Fourth Thursday November 2012");
有任何想法吗?
解决方法
我相信你会回到3月30日,而不是4月,对吗?
上周五2012年4月执行以下操作:
> 2012年4月将日期确定为2012-04-01
>上周五将日期改为上一个(最后一个)星期五,即2012-03-30
如果您想在四月的最后一个星期五,请使用2012年5月的最后一个星期五,
请参阅PHP手册中的Date/Time – Relative Formats.