这是php中的一个小代码,可以在我的localhost机器上运行,但不能在我的服务器上运行。
$frm = strtotime('30-10-2014');
$tod = strtotime('06-11-2014');
do{
$fromdate = date('d-m-Y',$frm);
$frm =strtotime($fromdate) + 86400;
echo $fromdate."<br/>";
}while($frm < $tod);
1)http://perfectwebsolutions.dx.am/dateloop.php(WorksFine) 2)http://worldpensonline.com/dateloop.php(Infiniteloop)
答案 0 :(得分:0)
在开头添加
date_default_timezone_set('Europe/Berlin');
或者更改为您的首选时区。
我认为这应该可以解决,如果没有,请告诉我。