wpseek.com
WordPress开发者和主题制作者的搜索引擎



timer_start › WordPress Function

Since0.71
已弃用n/a
timer_start ( 没有参数 )
访问:
  • private
查看:
返回:
  • (bool) Always returns true.
定义在:
文档:

Starts the WordPress micro-timer.



源码

function timer_start() {
	global $timestart;

	$timestart = microtime( true );

	return true;
}