Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness. Use timer_stop() instead.
timer_start()
Start the WordPress micro-timer.
Description Description
See also See also
Return Return
(bool) Always returns true.
Source 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
Changelog Changelog
Version | Description |
---|---|
0.71 | Introduced. |