thinkphp 千分位
时间: 2023-08-25 17:04:36 浏览: 129
thinkphp
在 ThinkPHP 中,可以使用 `number_format` 函数来格式化数字,实现千分位分隔。该函数的语法如下:
```php
number_format(float $number, int $decimals = 0, string $dec_point = ".", string $thousands_sep = ",");
```
其中,`$number` 表示要格式化的数字,`$decimals` 表示保留的小数位数(默认为 0),`$dec_point` 表示小数点符号(默认为 '.'),`$thousands_sep` 表示千分位分隔符(默认为 ',')。
示例代码:
```php
$num = 12345678.9;
$formatted_num = number_format($num, 2, '.', ',');
echo $formatted_num; // 输出:12,345,678.90
```
阅读全文