
Sam Yong
By: a guest on Sep 4th, 2009 | syntax:
PHP | size: 0.66 KB | hits: 131 | expires: Never
<?php
$time_start = microtime_float();
$test = cool;
echo $test.'<br/>';
$time_end = microtime_float();
$loadedin = (float)($time_end - $time_start);
echo $loadedin.' s<br/>';
$time_start = microtime_float();
$test = "cool";
echo $test.'<br/>';
$time_end = microtime_float();
$loadedin = (float)($time_end - $time_start);
echo $loadedin.' s<br/>';
$time_start = microtime_float();
$test = 'cool';
echo $test.'<br/>';
$time_end = microtime_float();
$loadedin = (float)($time_end - $time_start);
echo $loadedin.' s<br/>';
function microtime_float(){
return ((float)$usec + (float)$sec);
}
?>