php 格式化金钱

<?php
    function priceFormat($price) {
    $price_format   = number_format($price,2,'.',' ');
    return $price_format;
    }
?>

number_format() 函数介绍

php 格式化金钱

Tags: PHP

添加新评论