Skip to content

Instantly share code, notes, and snippets.

@chobie
Created August 19, 2014 05:44
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 chobie/a013e70a345ad3520e0c to your computer and use it in GitHub Desktop.
Save chobie/a013e70a345ad3520e0c to your computer and use it in GitHub Desktop.
<?php
function hoge() {
}
$begin = microtime(true);
for ($i = 0; $i<1000000;$i++) {
hoge();
}
$end = microtime(true);
var_dump($end - $begin);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment