Skip to content

Instantly share code, notes, and snippets.

@shyazusa
Created February 1, 2017 05:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shyazusa/1c782b9ff72188590bc26d9ccaf47837 to your computer and use it in GitHub Desktop.
Save shyazusa/1c782b9ff72188590bc26d9ccaf47837 to your computer and use it in GitHub Desktop.
PHPの処理速度を計測 - Qiita : http://qiita.com/ao_love/items/a2d8b8566d0426195002
<?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