0
我正試圖在數組內找到一個值。計算兩個數組之間的值
我的功能:
$discount_quantity = $Products->getProductsDiscountQuantity($products_id)
回本:
[0] => string(1) "1" [1] => string(1) "5" [2] => string(2) "10"
我有例如$qty = 6
數量,我需要對
if $qty < 5 then $discount = 0%
if $qty > 5 et qty < 10 then $discount = 10%
if $qty > 10 then $discount = 15%
應用的折扣如何使一個數組?
是$ discount_quantity一個像[0] => string(1)「1」[1] => string(1)「5」[2] => string(2)「10」的數組? –
是的,如果我理解你的問題 – kurama