number_format()
是 PHP 中的一個內置函數,用于將一個數字格式化為字符串
以下是使用 number_format()
函數的基本語法:
number_format(float $number, int $precision = 0, string $decimal_point = ".", string $thousands_separator = ","): string
參數說明:
$number
(必需):要格式化的浮點數。$precision
(可選):指定小數點后的位數。默認值為 0。$decimal_point
(可選):指定小數點字符。默認值為 “.”。$thousands_separator
(可選):指定千位分隔符。默認值為 “,”。示例:
$number = 1234567.89;
$precision = 2;
$decimal_point = ".";
$thousands_separator = ",";
// 使用 number_format() 格式化數字
$formatted_number = number_format($number, $precision, $decimal_point, $thousands_separator);
// 輸出:1,234,567.89
echo $formatted_number;
在這個示例中,我們將數字 1234567.89
格式化為帶有兩位小數的字符串,并使用逗號作為千位分隔符。輸出結果為 1,234,567.89
。