-1

如何使用货币方法将我的数字格式化为 GBP (£) ?

以下代码返回 110.00 美元,我希望它返回 110.00 英镑

 <div id="subtotal"> <?php echo $number->currency($invoice['Invoice']['subTotal']); ?></div>
4

1 回答 1

2

echo $number->currency($invoice['Invoice']['subTotal'], 'GBP');

查看 api 文档:http ://api12.cakephp.org/class/number-helper#method-NumberHelpercurrency

于 2012-04-19T15:48:26.203 回答