Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHPスクリプトの指定された部分にかかる時間を測定したい。
$startTime = microtime(true); //some operations which needs 0.1 to 100 seconds to run $endTime = microtime(true);
マイクロ秒単位の期間を整数として取得するにはどうすればよいですか?
これは動作しません:
$duration = (int)($endTime - $startTime);
マイクロ秒を整数として使用する場合:
$duration = round(($endTime - $startTime) * 1000000)