timer_start() – Start the WordPress micro-timer.
You appear to be a bot. Output may be restricted
Description
Start the WordPress micro-timer.
Usage
$bool = timer_start();
Parameters
Returns
bool Always returns true.
Source
File name: wordpress/wp-includes/load.php
Lines:
1 to 5 of 5
function timer_start() { global $timestart; $timestart = microtime( true ); return true; }