我试图从日期向后减去一个月到给定日期。我写的代码做减法,但我不知道为什么它不完成循环。下面是代码块
$date7 = date('Y-m-10');
$lastsaving = date("2013-2-9");
while($lastsaving < $date7){
$newdate = strtotime ( '-1 month' , strtotime ( $date7 ) ) ;
$date7 = date ( 'Y-m-d' , $newdate );
echo $date7;
echo "<br />";
}
得到的结果是
2015-05-10
2015-04-10
2015-03-10
2015-02-10
2015-01-10
2014-12-10
2014-11-10
2014-10-10
2014-09-10
2014-08-10
2014-07-10
2014-06-10
2014-05-10
2014-04-10
2014-03-10
2014-02-10
2014-01-10
2013-12-10
请帮我找出没有完成循环的原因
change
$lastsaving = date("2013-2-9");
$lastsaving = date("2013-02-9");
在这里,你可以看到工作的:http://codepad.org/uI0R6TvC
我上面的家伙也是对的:)那也行
while(strtotime($lastsaving) < strtotime($date7)) {
在此测试:http://codepad.org/OY36ij3U
您必须首先将它们转换为时间戳进行比较。
使用strtotime()
while(strtotime($lastsaving) < strtotime($date7)) { ... // rest of the code
我按照上面@Danyal Sandeelo的建议将$lastsaving = date("2013-2-9");
更改为$lastsaving = date("2013-02-09");