如何使用货币方法将我的数字格式化为 GBP (£) ?
以下代码返回 110.00 美元,我希望它返回 110.00 英镑
<div id="subtotal"> <?php echo $number->currency($invoice['Invoice']['subTotal']); ?></div>
如何使用货币方法将我的数字格式化为 GBP (£) ?
以下代码返回 110.00 美元,我希望它返回 110.00 英镑
<div id="subtotal"> <?php echo $number->currency($invoice['Invoice']['subTotal']); ?></div>
echo $number->currency($invoice['Invoice']['subTotal'], 'GBP');
查看 api 文档:http ://api12.cakephp.org/class/number-helper#method-NumberHelpercurrency