Filter hook 'number_format_i18n'

in WP Core File wp-includes/functions.php at line 439

Description

Filters the number formatted based on the locale.

Occurrences

Filename Line Number
wp-includes/functions.php 439

Parameters

Type Name Description
string $formatted Converted number in string format.
float $number The number to convert based on locale.
int $decimals Precision of the number of decimal places.

PHP Doc

/**
	 * Filters the number formatted based on the locale.
	 *
	 * @since 2.8.0
	 * @since 4.9.0 The `$number` and `$decimals` parameters were added.
	 *
	 * @param string $formatted Converted number in string format.
	 * @param float  $number    The number to convert based on locale.
	 * @param int    $decimals  Precision of the number of decimal places.
	 */