hi i require to get the response time for each page. i did the following (found this e.g. on here:
function microtimediff($start,$end=NULL ) {
if(!$end ) {
$end= microtime();
}
//list($start_usec, $start_sec) = explode(" ", $start);
list($end_usec, $end_sec) = explode(" ", $end);
$diff_sec= intval($end_sec) - intval($start_sec);
$diff_usec= floatval($end_usec) - floatval($start_usec);
return floatval( $diff_sec ) + $diff_usec;
}
the results im getting is similar to 1156127104.746352 Seconds
why is the value so huge??