使用智能模板系统在PHP中添加美元金额?

时间:2014-03-01 20:17:21

标签: php smarty

我需要添加几美元金额。这是我目前正在使用的代码:

{php}$totalaffamount = $pendingcommissions + $balance + $withdrawn;
echo $totalaffamount;{/php}

以下是各自的值:

$pendingcommissions = $5.00 USD
$balance = $1000.00 USD
$withdrawn = $393.99 USD

我想像这样显示总数:

$1398.99

然而,我一直得到0作为我猜的输出是因为变量中的美元符号和美元...有谁知道我需要更改我的代码为此工作?

1 个答案:

答案 0 :(得分:0)

尝试仅为此使用值,使用$ signs不是添加内容的正确方法

$pendingcommissions = 5.00;
$balance = 1000.00;
$withdrawn = 393.99;

$total = $pendingcommissions + $balance + $withdrawn;

echo '$'.$total;

:)