日期:2014-05-16 浏览次数:21094 次
<?php
$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);
?>