Skip to content

Instantly share code, notes, and snippets.

@AucT
Created December 19, 2016 17:29
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 AucT/d8cfd876e1ca3c9c4f98def27c039d97 to your computer and use it in GitHub Desktop.
Save AucT/d8cfd876e1ca3c9c4f98def27c039d97 to your computer and use it in GitHub Desktop.
<?
$time_start = microtime(true);
//Your Content (i use sleep 2 seconds to for demo)
sleep(2);
$time_end = microtime(true);
$time = $time_end - $time_start;
echo 'Page generated in: '.$time.' seconds';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment