php 格式化金钱 Author: 叶测试 August 3, 2016 Cate: PHP 本文发布较早,其内容可能过时,阅读时请注意甄别。 <?php function priceFormat($price) { $price_format = number_format($price,2,'.',' '); return $price_format; } ?> number_format() 函数介绍 Tags: PHP