PHP에서 스크립트 실행 시간 확인
PHP에서는 max_execution_time 제한에 따라 스크립트에서 사용하는 CPU 시간을 추적해야 합니다. 이 기사에서는 테스트 환경에서 PHP CPU 사용량을 쉽게 기록하기 위해 스크립트 자체 내에서 이 정보에 액세스하는 메커니즘이 있는지 살펴봅니다.
Linux 시스템의 경우 경과된 벽시계 시간을 계산하는 간단한 방법이 있습니다. CPU 시간보다) 스크립트:
// Determine the script's starting time (in microseconds) $time_start = microtime(true); // Execute the desired script // (Replace this block with the code you want to track) for($i=0; $i<1000; $i++){ // Perform actions } // Determine the script's end time (in microseconds) $time_end = microtime(true); // Calculate the execution time (default unit: seconds) $execution_time = $time_end - $time_start; // Output the execution time in minutes echo '<b>
이 방법에는 데이터베이스 또는 디스크 응답을 기다리는 것과 같은 비PHP 실행 시간이 포함되며 이는 고려되지 않습니다. max_execution_time 계산.
위 내용은 스크립트 자체 내에서 PHP 스크립트 실행 시간을 어떻게 측정할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!