如何在PHP中为数字添加逗号
我想知道如何在数字上加上逗号。让我的问题变得简单。
我想更改此:
1210 views
至:
1,210 views
和:
14301
至
14,301
以此类推。有可能使用php函数吗?
回答:
从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美分
以上是 如何在PHP中为数字添加逗号 的全部内容, 来源链接: utcz.com/qa/414180.html