timer_float(): float

In this article

Gets the time elapsed so far during this PHP script.

Description

Uses REQUEST_TIME_FLOAT that appeared in PHP 5.4.0.

Return

float Seconds since the PHP script started.

Source

function timer_float() {
	return microtime( true ) - $_SERVER['REQUEST_TIME_FLOAT'];
}

Changelog

VersionDescription
5.8.0Introduced.

User Contributed Notes

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