Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法我们可以使用 Yii 中的一些内置格式化程序从货币代码中获取货币符号?例如,我将 'USD' 传递给函数并返回美元符号?
你可以这样做
echo Yii::app()->numberFormatter->formatCurrency(56, 'USD');
其中 56 是成本。
更具体的信息可以在yii 参考文档中找到。
希望这可以帮助。