Skip to content

Instantly share code, notes, and snippets.

@varemenos
Created March 11, 2012 03:30
Show Gist options
  • Save varemenos/2014877 to your computer and use it in GitHub Desktop.
Save varemenos/2014877 to your computer and use it in GitHub Desktop.
PHP - Exec time calculation
<?
// start{
// exec time
$start_time = (float) array_sum(explode(' ', microtime()));
// }
// config file {
// developer mode on/off
define('DEV_MODE', true);
// }
// end{
// exec time
$end_time = round((float) array_sum(explode(' ', microtime())) - $start_time, 4);
if(DEV_MODE){
echo "Exec time: ". $end_time * 1000 ."ms";
}
// }
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment