1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
function microtime_float() { list($usec, $sec) = explode(” “, microtime()); return ((float)$usec + (float)$sec); }
$starttime = microtime_float();
$runtime = number_format((microtime_float() – $starttime), 4).'s';
echo ‘RunTime:'.$runtime;
|