我在PHP 5.3中成功使用了以下strtotime命令
echo strtotime('last day of last month');
但不幸的是,同样的命令在PHP 5.1.6中返回空值我不想升级PHP,因为PHP 5.1.6是CentOs 5中的默认版本。我想知道是否有任何替代方法可以在PHP 5.1中获得相同的结果0.6
答案 0 :(得分:2)
echo date("t/m/Y", strtotime("last month"));
答案 1 :(得分:1)
这应该是技巧,伙计:D
strtotime('-1 second',strtotime(date('m').'/01/'.date('Y').' 00:00:00'))
如果您将此作为日期获得回复,请致电02/28/2011。