0

我想问一下。所以我取数据库实例的值我取数据库的值price,一般值例如3000。我想在3.000中插入一个字符点值3000。

描述:

$price = $row['price'];
// eg, the value of $price that is 3000
// Output to 3.000

如何编码php来解决问题?请帮忙,谢谢

4

2 回答 2

0

很难解读您的问题,但number_format()您正在寻找什么?

于 2012-12-30T07:42:04.683 回答
0

我相信您正在寻找number_format()

php > echo number_format(3000, 0, ',', '.');
3.000
php > echo number_format(3000000, 0, ',', '.');
3.000.000
于 2012-12-30T07:42:58.803 回答