任何處理過匯入或匯出資料的人都可能遇到過腳本執行時間限製過短的問題。最快的解決方案通常涉及調整 PHP 配置或完全停用腳本開頭的限制。然而,顯著延長執行時間或完全停用它會帶來安全風險。無法停止的後台腳本可能會導致資源消耗過多。
在迭代中處理任務時,可以及時監控各個階段並嘗試在時間限製到期之前正常終止執行。
// initialize basic variables for further work $maxExecutionTime = (int)ini_get('max_execution_time'); $estimateCycleTime = 0; $startTime = microtime(true); // For demonstration purposes, we use an "infinite" loop with a simulated task lasting 10 seconds while (true) { sleep(10); // Calculate the current runtime $currentRunTime = microtime(true) - $startTime; // Termination can be done either with a fixed constant // or by measuring the time of one pass and trying to use // the longest possible segment of the runtime // limit (has its problem). if ($estimateCycleTime === 0) { $estimateCycleTime = $currentRunTime; } // Check if the iteration stop time is approaching. // Subtract the time of one pass, which likely won't fit // within the window. if (($maxExecutionTime - $estimateCycleTime) < $currentRunTime) { echo 'Time is end'; break; } }
基於一輪計算的提前終止適用於需要在盡可能少的新執行中處理大量輪次的情況,而一輪中的每個操作同樣耗時。如果各個通行證的時間要求不同,則必須在通行證時間上添加一個係數。另一個選擇是使用預先定義的時間:
$beforeEndTime = 1; if (($maxExecutionTime - $beforeEndTime) < $currentRunTime) { echo 'Time is end'; break; }
如果腳本在迭代後繼續,例如關閉與 API 端點的連線、關閉檔案或執行其他操作,則必須記住新增此時間。
以上是針對最大執行時間限制的基本保護的詳細內容。更多資訊請關注PHP中文網其他相關文章!