wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



timer_stop › WordPress Function

Depuis0.71
Dépréciéen/a
timer_stop ( $display = 0, $precision = 3 )
Paramètres: (2)
  • (int|bool) $display Whether to echo or return the results. Accepts 0|false for return, 1|true for echo. Default 0|false.
    Requis: Non
    Défaut:
  • (int) $precision The number of digits from the right of the decimal to display. Default 3.
    Requis: Non
    Défaut: 3
Retourne:
  • (string) The "second.microsecond" finished time calculation. The number is formatted for human consumption, both localized and rounded.
Défini(e) dans:
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;
}