Skip to content

Instantly share code, notes, and snippets.

@actrace
actrace / gist:77e357a595c45b044790
Created October 19, 2014 03:14
sum1E for php version
<?php
$i=1;
$tmp = 0;
$startTime = microtime(true);
while($i<100000000){
$tmp += $i;
$i++;
}
print_r(microtime(true) - $startTime);
//4.8-5.2s