timer_stop() – Retrieve or display the time from the page start to when function is called.
You appear to be a bot. Output may be restricted
Description
Retrieve or display the time from the page start to when function is called.
Usage
$string = timer_stop( $display, $precision );
Parameters
- $display
- ( int|bool ) optional – Whether to echo or return the results. Accepts 0|false for return,
- |true for echo. Default 0|false.
- $precision
- ( int ) optional default: 3 – The number of digits from the right of the decimal to display. Default 3.
Returns
string The "second.microsecond" finished time calculation. The number is formatted for human consumption, both localized and rounded.
Source
File name: wordpress/wp-includes/load.php
Lines:
1 to 10 of 10
function timer_stop( $display = 0, $precision = 3 ) { global $timestart, $timeend; $timeend = microtime( true ); $timetotal = $timeend - $timestart; $r = ( function_exists( 'number_format_i18n' ) ) ? number_format_i18n( $timetotal, $precision ) : number_format( $timetotal, $precision ); if ( $display ) { echo $r; } return $r; }