timer_start

函数
timer_start ( No parameters )
Access
Private
返回值
  • (bool) Always returns true.
相关
  • timer_stop()
定义位置
相关方法
timer_stoptimer_floatstr_starts_withget_media_statesget_image_tag
引入
0.71
弃用
-

timer_start: 此函数启动一个计时器,可用于测量某项任务的耗费时间。

启动WordPress的微型计时器。

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

常见问题

FAQs
查看更多 >