wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



timer_start › WordPress Function

Seit0.71
Veraltetn/v
timer_start ( Keine Parameter )
Zugriff:
  • private
Siehe:
Gibt zurück:
  • (bool) Always returns true.
Definiert in:
Codex:

Starts the WordPress micro-timer.



Quellcode

function timer_start() {
	global $timestart;

	$timestart = microtime( true );

	return true;
}