0
我需要遍歷日期以獲得每個塊爲1天的塊。這樣我總共需要10天。我試過這段代碼,但那不起作用。循環10天,並將每個日期存儲在一個數組中
for($i=0; $i<=10;$i++)
{
$dates=date("Y-m-d", strtotime($current_date, "+1 days"));
$tmp_array[$i]=$dates;
debug($date);
}
我得到這個打印無限次的錯誤。
Notice: A non well formed numeric value encountered in /Path/to/the/file on line 45
2014-12-03
請張貼工作完全源碼e片段。您當前的代碼片段無法重現錯誤,因爲它缺少'$ current_date'。 – Evert 2014-12-03 05:44:23