Skip to content

Instantly share code, notes, and snippets.

@nunoveloso
Created April 13, 2012 11:37
Show Gist options
  • Save nunoveloso/2376130 to your computer and use it in GitHub Desktop.
Save nunoveloso/2376130 to your computer and use it in GitHub Desktop.
PHP execution time
/** stopwatch php script execution time **/
$ts = microtime(true);
// do shit here
printf("%.4f\n", microtime(true) - $ts);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment