首页 > 网站 > 建站经验 > 正文

php价格格式化函数

2024-04-25 20:35:46
字体:
来源:转载
供稿:网友

/**

* 价格格式化

*

* @param int $price

* @return string $price_format

*/

function ncPriceFormat($price) {

$price_format = number_format($price,2,'.','');

return $price_format;

}

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表