timer_start

函数


timer_start ( No parameters )
Access
Private
返回值
  • (bool) Always returns true.
相关
  • timer_stop()
定义位置
  • wp-includes/load.php
    , line 360
引入
0.71
弃用

Start the WordPress micro-timer.

function timer_start() {
	global $timestart;
	$timestart = microtime( true );
	return true;
}