我想问一下。所以我取数据库实例的值我取数据库的值price,一般值例如3000。我想在3.000中插入一个字符点值3000。
描述:
$price = $row['price'];
// eg, the value of $price that is 3000
// Output to 3.000
如何编码php来解决问题?请帮忙,谢谢
很难解读您的问题,但number_format()
您正在寻找什么?
我相信您正在寻找number_format()。
php > echo number_format(3000, 0, ',', '.');
3.000
php > echo number_format(3000000, 0, ',', '.');
3.000.000