Skip to content

Instantly share code, notes, and snippets.

@trevorgreenleaf
Created July 27, 2013 14:08
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 trevorgreenleaf/6094979 to your computer and use it in GitHub Desktop.
Save trevorgreenleaf/6094979 to your computer and use it in GitHub Desktop.
Benchmark Testing Php Fucntions
<?php
function my_function(){
$start_time = microtime()*1000;
// sleep(1);
$end_time = microtime()*1000;
echo $end_time - $start_time;
}
my_function();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment