PHP的strtotime()导致月份的第5个dayname返回下个月

时间:2016-06-07 15:19:48

标签: php strtotime

我想strtotime()只返回一个月的第5个日期名称,如果那个月有日期。

例如:

echo date('M d Y', strtotime('Fifth Wednesday of September 2016'));
echo date('M d Y', strtotime('Fifth Wednesday of November 2016'));

返回:

Oct 05 2016
Nov 30 2016

当我希望它返回时

null
Nov 30 2016

实现这一目标的最有效方法是什么?

0 个答案:

没有答案