我通过以下代码从PHP检索数据,这是我的MySQL表中的数字:
if(isset($_GET['pro_id']))
{
$product_id = $_GET['pro_id'];
$get_product = "select * from products where product_id='$product_id'";
$run_product = mysqli_query($con,$get_product);
while($row_results=mysqli_fetch_array($run_product))
{
$pro_price = $row_results['product_price'];
}
echo $pro_price;
}
可变价格包含如下数字:
6759000
现在我想通过,点将这个数字的每个3个元素相互分开。所以它看起来像这样:
6759000
那我怎么能在PHP中做到这一点?
答案 0 :(得分:0)
这是您正在寻找的功能:
$pro_price = number_format($row_results['product_price']);