php獲取2個時間內(nèi)的所有日期
$dt_start = strtotime($start_date);
$dt_end = strtotime($back_date);
while ($dt_start<=$dt_end){
$dt_start = strtotime('+1 day',$dt_start);
}
php獲取2個時間內(nèi)的所有日期
$dt_start = strtotime($start_date);
$dt_end = strtotime($back_date);
while ($dt_start<=$dt_end){
$dt_start = strtotime('+1 day',$dt_start);
}