我想在小数点后设置4位数分数
for example : Yii::$app->formatter->asCurrency($model->amount)
current output is : $ 65.58
expected output is : $ 65.5765
我已经尝试了这个link,但我得到的错误是" Class' NumberFormatter'找不到"。
如何在主配置文件中使用以下属性,这些属性在Formatter类
中提到 [
NumberFormatter::MIN_FRACTION_DIGITS => 0,
NumberFormatter::MAX_FRACTION_DIGITS => 2,
]