...
|
...
|
@@ -186,11 +186,12 @@ class Helpers |
|
|
* 转换价格
|
|
|
*
|
|
|
* @param float|string $price 价格
|
|
|
* @param boolean $isSepcialZero 是否需要特殊的0,默认否
|
|
|
* @return float|string 转换之后的价格
|
|
|
*/
|
|
|
public static function transPrice($price)
|
|
|
public static function transPrice($price, $isSepcialZero = false)
|
|
|
{
|
|
|
return !empty($price) ? number_format($price, 2, '.', '') : 0;
|
|
|
return (!empty($price) || $isSepcialZero) ? number_format($price, 2, '.', '') : 0;
|
|
|
}
|
|
|
|
|
|
/**
|
...
|
...
|
|