Created
February 1, 2017 05:25
-
-
Save shyazusa/1c782b9ff72188590bc26d9ccaf47837 to your computer and use it in GitHub Desktop.
PHPの処理速度を計測 - Qiita : http://qiita.com/ao_love/items/a2d8b8566d0426195002
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$time_start = microtime(true); | |
// 計測したい処理 | |
$time = microtime(true) - $time_start; | |
echo "{$time} 秒"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment