데이터 가져오기 또는 내보내기 작업을 수행한 사람이라면 누구나 짧은 실행 시간 제한에 직면하는 스크립트 문제에 직면했을 것입니다. 가장 빠른 해결 방법은 종종 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; } }
1패스 계산을 기반으로 한 조기 종료는 가능한 한 적은 수의 새로운 실행으로 처리해야 하는 패스 수가 많고, 한 패스의 각 작업에 마찬가지로 시간이 많이 걸리는 경우에 적합합니다. 개별 패스에 필요한 시간이 다를 경우 패스 시간에 계수를 추가해야 합니다. 또 다른 옵션은 미리 정의된 시간을 사용하는 것입니다.
$beforeEndTime = 1; if (($maxExecutionTime - $beforeEndTime) < $currentRunTime) { echo 'Time is end'; break; }
API 엔드포인트에 대한 연결 닫기, 파일 닫기 또는 기타 작업 수행 등 반복 후에도 스크립트가 계속되는 경우 이 시간을 추가하는 것을 기억하는 것이 중요합니다.
위 내용은 최대 실행 시간 제한에 대한 기본 보호의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!