$buy_amount = 50;
$amount[0] = 100;
$amount[1] = 150;
$amount[2] = 50;
$test;
$i = $buy_amount;
$arrlength = count($amount);
for ($x = 0; $x < $arrlength; $x++) {
$test = $amount[$x] - $i;
if ($amount[$x] != $test) {
$i = $test;
echo $test;
echo '<br/>';
}
}
我需要做的是,如果我發送$buy_amount = 50
結果必須減去這樣更新數據和環路
例子:
$amount[0] = 50;
$amount[1] = 150;
$amount[2] = 50;
如果我送$buy_amount = 150
結果需減去這樣
實施例:
$amount[0] = 0;
$amount[1] = 100;
$amount[2] = 50;
在這裏我需要從第一個元素先做減法,去到其他和subtact從,如果buy_amount
留下了去其他元素喜歡明智
你到底在做什麼?你得到的錯誤是什麼? – Crackertastic
所以,你想根據'$ buy_amount'的值更新'$ amount'?你的標準是什麼? –
我需要從數組中減少。沒有錯誤 –