number_format_i18n
函数
number_format_i18n ( $number, $decimals = 0 )
- 参数
-
-
(float)
$number
The number to convert based on locale.- Required: 是
-
(int)
$decimals
Optional. Precision of the number of decimal places. Default 0.- Required: 否
-
(float)
- 返回值
-
- (string) Converted number in string format.
- 定义位置
-
-
wp-includes/functions.php
, line 421
-
wp-includes/functions.php
- 引入
- 2.3.0
- 弃用
- –
Converts float number to format based on the locale.
function number_format_i18n( $number, $decimals = 0 ) { global $wp_locale; if ( isset( $wp_locale ) ) { $formatted = number_format( $number, absint( $decimals ), $wp_locale->number_format['decimal_point'], $wp_locale->number_format['thousands_sep'] ); } else { $formatted = number_format( $number, absint( $decimals ) ); } /** * 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. */ return apply_filters( 'number_format_i18n', $formatted, $number, $decimals ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。