wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



timer_start › WordPress Function

Da0.71
Deprecaton/a
timer_start ( Nessun parametro )
Accedi:
  • private
Vedi:
Ritorna:
  • (bool) Always returns true.
Definito a:
Codex:

Starts the WordPress micro-timer.



Sorgenti

function timer_start() {
	global $timestart;

	$timestart = microtime( true );

	return true;
}