timer_start
Definition
timer_start()
includes/bootstrap.inc, line 563
Description
Begin a global timer, for benchmarking of page execution time.
Code
<?php
function timer_start() {
global $timer;
list($usec, $sec) = explode(' ', microtime());
$timer = (float)$usec + (float)$sec;
}
?> 