timer_start()
Start the WordPress micro-timer.
Description
See also
Return
(bool) Always returns true.
Source
File: wp-includes/load.php
function timer_start() { global $timestart; $timestart = microtime( true ); return true; }
Expand full source code Collapse full source code View on Trac View on GitHub
Changelog
Version | Description |
---|---|
0.71 | Introduced. |