时间:2021-07-01 10:21:17 帮助过:26人阅读
$stime=strtotime('2013-7-1');
$otime=strtotime('2013-7-3');
$i=0;
$arr=array();
for($i=$stime;$stime<=$otime;$stime=$stime+86400)
{
$arr[]=date('m.d',$stime);
}
$new_arr=implode($arr,'
------解决方案--------------------
');
print_r($new_arr);
?>