0

如何格式化此代码以显示大英镑货币 (£) 符号但仅在 $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

4

1 回答 1

0

尝试这个:

<?php echo $number->currency ((isset($item['total']) ? $item['total'] : $item['quantity'] * $item['price']),'GBP'); ?>

希望这可以帮助

于 2012-05-02T17:17:12.913 回答