0
配列内の値を検索しようとしています。2つの配列間の値を計算する
私の機能:
$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] =>文字列(1) "1" [1] =>文字列(1) "5" [2] =>文字列(2) "10"? –
はい、あなたの質問を理解していれば – kurama