一尘不染

如何在PHP中为数字添加逗号

php

我想知道如何在数字上加上逗号。让我的问题变得简单。

我想更改此:

1210 views

至:

1,210 views

和:

14301

14,301

以此类推。有可能使用php函数吗?


阅读 465

收藏
2020-05-29

共1个答案

一尘不染

从php手册http://php.net/manual/en/function.number-
format.php

我假设您想要英语格式。

<?php

$number = 1234.56;

// english notation (default)
$english_format_number = number_format($number);
// 1,235

// French notation
$nombre_format_francais = number_format($number, 2, ',', ' ');
// 1 234,56

$number = 1234.5678;

// english notation with a decimal point and without thousands seperator
$english_format_number = number_format($number, 2, '.', '');
// 1234.57

?>

我的2美分

2020-05-29