如何格式化此代码以显示大英镑货币 (£) 符号但仅在 $item['total'] 旁边?
<?php echo $id; ?>Total"><?php echo $number->currency (isset($item['total']) ?
$item['total'] : $item['quantity'] * $item['price']); ?>
我似乎无法正确使用语法。
这种尝试没有奏效:
<?php echo $id; ?>Total"><?php echo $number->currency (isset($item['total'], 'GDP') ?
$item['total'] : $item['quantity'] * $item['price']); ?>
文档在这里: http ://api12.cakephp.org/class/number-helper#method-NumberHelpercurrency