Last active
October 13, 2015 11:28
-
-
Save toshimaru/4188781 to your computer and use it in GitHub Desktop.
パフォーマンス計測コード
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} 秒"; |
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
beginning_time = Time.now | |
# process | |
end_time = Time.now | |
puts "Time elapsed #{(end_time - beginning_time)} seconds" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
blogged: http://blog.toshimaru.net/php-5492