爱吾下载 ● 文章资讯
分类分类
更新时间:2025-10-06 23:12:04作者:sa
/**
* 价格格式化
*
* @param int $price
* @return string $price_format
*/
function ncPriceFormat($price) {
$price_format = number_format($price,2,'.','');
return $price_format;
}
相关