Definition

timer_start()
drupal/includes/bootstrap.inc, line 563

Description

Begin a global timer, for benchmarking of page execution time.

Code

function timer_start() {
  global $timer;
  list($usec, $sec) = explode(' ', microtime());
  $timer = (float)$usec + (float)$sec;
}