如何将一组特定的数字彼此分开

时间:2018-01-26 20:46:26

标签: php mysql mysqli word-processor

我通过以下代码从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中做到这一点?

1 个答案:

答案 0 :(得分:0)

这是您正在寻找的功能:

$pro_price = number_format($row_results['product_price']);

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