Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness. Use timer_stop() instead.

timer_start(): bool

Starts the WordPress micro-timer.


Description

Top ↑

See also


Top ↑

Return

bool Always returns true.


Top ↑

Source

File: wp-includes/load.php. View all references

function timer_start() {
	global $timestart;

	$timestart = microtime( true );

	return true;
}

Top ↑

Changelog

Changelog
Version Description
0.71 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.