timer_start
- Versions
- 4.6
timer_start()- 4.7 – 7
timer_start($name)
Begin a global timer, for benchmarking of page execution time.
Code
includes/bootstrap.inc, line 563
<?php
function timer_start() {
global $timer;
list($usec, $sec) = explode(' ', microtime());
$timer = (float)$usec + (float)$sec;
}
?>Login or register to post comments 