我有一个奇怪的问题,我似乎无法确定原因。
当我使用 Zend_Currency 将值格式化为 GBP 时,我在 £ 符号前得到一个带重音符号的 A。如果要求它返回任何其他货币,例如 USD,重音 A 就会消失。
生成此代码的代码是:
$currency = new Zend_Currency('en_GB');
$amount = $currency->toCurrency($value);
这显示
£ 500.00
如果我设置为 en_US 我得到
$ 500.00
关于为什么会这样的任何想法?
谢谢...