我有一个简单的问题,我不太确定如何使用循环来获取 php 变量并将它们添加在一起
假设我有这个循环
$total = 0;
while ( $foo ='bar' );
$amount = meta($row, 'amount');
endwhile;
$total = 'NEW AMOUNT';
我的问题是,如何将金额(从 1 到 200 的任何地方)加在一起以创建底部$total
?对象的数量while ( $foo ='bar');
不断增长,可以是 2 个对象,也可以是 2000 个。