timer_start() WP 0.71
Start the WordPress micro-timer.
No Hooks.
Return
true|false
. Always returns true.
Usage
timer_start();
Notes
- Global. float. $timestart Unix timestamp set at the beginning of the page load.
- See: timer_stop()
Changelog
Since 0.71 | Introduced. |
Code of timer_start() timer start WP 5.7
function timer_start() {
global $timestart;
$timestart = microtime( true );
return true;
}