Skip to content

Instantly share code, notes, and snippets.

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 JudeRosario/c87a3a982b0cdaa2baa8c58330950d20 to your computer and use it in GitHub Desktop.
Save JudeRosario/c87a3a982b0cdaa2baa8c58330950d20 to your computer and use it in GitHub Desktop.
<?php
$j = 0;
$start = microtime(true);
for ( $i = 0 ; $i < PHP_INT_MAX ; $i++ ) {
$j++;
}
echo $j . "\n" ;
$time_elapsed_secs = microtime(true) - $start;
echo $time_elapsed_secs . "\n" ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment