Skip to content

Instantly share code, notes, and snippets.

@LeoOnTheEarth
Last active December 24, 2015 09:19
Show Gist options
  • Save LeoOnTheEarth/6776682 to your computer and use it in GitHub Desktop.
Save LeoOnTheEarth/6776682 to your computer and use it in GitHub Desktop.
show execution time with PHP build-in server
<?php
register_shutdown_function(function () {
echo 'execution time: ' . (microtime(true) - $_SERVER['REQUEST_TIME_FLOAT']) . ' seconds.';
});
return false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment