启动WordPress微型计时器。
原型
timer_start()
返回值
(bool)
始终返回true。
源文件
路径:wp-includes/load.php
<?php
...
function timer_start() {
global $timestart;
$timestart = microtime( true );
return true;
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/timer_start/