15,024
edits
| Line 132: | Line 132: | ||
* 解決方法: | * 解決方法: | ||
** 減少每次讀取的資料行數,例如每次只讀取 50 行的資料筆數來做處理。 | ** 減少每次讀取的資料行數,例如每次只讀取 50 行的資料筆數來做處理。 | ||
** foreach | ** [http://php.net/manual/en/control-structures.foreach.php foreach] 時,與其寫入整個陣列到記憶體,可以改用 Generators 寫法,節省記憶體的使用。詳見: [http://php.net/manual/en/language.generators.overview.php PHP: Generators overview - Manual] | ||
=== 錯誤訊息: It is not safe to rely on the system's timezone settings === | === 錯誤訊息: It is not safe to rely on the system's timezone settings === | ||