wpseek.com
A WordPress-centric search engine for devs and theme authors
timer_stop › WordPress Function
Since0.71
Deprecatedn/a
› timer_stop ( $display = 0, $precision = 3 )
| Parameters: (2) |
|
| Returns: |
|
| Defined at: |
|
| Codex: |
Retrieves or displays the time from the page start to when function is called.
Source
function timer_stop( $display = 0, $precision = 3 ) {
global $timestart, $timeend;
$timeend = microtime( true );
$timetotal = $timeend - $timestart;
if ( function_exists( 'number_format_i18n' ) ) {
$r = number_format_i18n( $timetotal, $precision );
} else {
$r = number_format( $timetotal, $precision );
}
if ( $display ) {
echo $r;
}
return $r;
}