timer_start ( No parameters )
timer_start: 此函数启动一个计时器,可用于测量某项任务的耗费时间。
启动WordPress的微型计时器。
function timer_start() { global $timestart; $timestart = microtime( true ); return true; }