PHP でのスクリプト実行時間の監視
PHP では、スクリプト実行時間を追跡することは、max_execution_time 制限を強制するために非常に重要です。しかし、スクリプト自体内でこの情報にアクセスすることは可能ですか?
解決策
(CPU 実行時間ではなく) 実時間を監視するには、続くコード:
// Start time $time_start = microtime(true); // Script execution for($i=0; $i<1000; $i++){ // Perform operations } // End time $time_end = microtime(true); // Execution time computation $execution_time = ($time_end - $time_start)/60; // Output echo '<b>Total Execution Time:</b> '.$execution_time.' Mins';
注:
このメソッドには、外部リソース (データベースなど) の待機時間が含まれますが、これは max_execution_time 制限には考慮されません。
以上がスクリプト自体内で PHP スクリプトの実行時間を監視するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。