0

I hope this makes sense. Right now I am using the following code to add up number of checkboxes check and get a shipping price based off that number. This only gets me one set off shipping prices (ground). I know want to add mulitpble shipping options so I need to add another set of switch/case statement.

//Add up club totals for shipping
            $clubTotal = array(
                            $driversChecked,
                            $hybridsChecked,
                            $woodsChecked,
                            $boxesChecked,
                            $wedgesChecked,
                            );  

            //see what shipping was picked
            $shippingChoice = $_POST['ShipMethod'];

            //Figure out ground shipping
            if (array_sum($clubTotal))
            {
                switch(array_sum($clubTotal))
                {
                    case 6:
                        $shippingCost =  15.99 ;
                        break ;

                    case 7:
                    case 8:
                        $shippingCost =  16.99 ;
                        break ;

                    case 9:
                    case 10:
                        $shippingCost =  17.99 ;
                        break ;

                    case 11:
                    case 12:
                        $shippingCost =  18.99 ;
                        break ;

                    case 13:
                        $shippingCost =  19.99 ;
                    break ;

                    case 14:
                        $shippingCost =  20.99 ;
                    break ;

                    case 15:
                        $shippingCost =  21.99 ;
                    break ;

                    case 16:
                        $shippingCost = 22.99;
                    break ;

                    default:
                        $shippingCost = 14.99;
                        break ;
                }
            }

If $shippingChoice = $_POST['ShipMethod']; is getting my ship method, how can I use that to select what switch/case statement to use. Like if $shippingChoice returned the value of "ground" it would use my current switch/case statement.If it returned "2 Day" it would use another switch/case statement I would make.

4

2 回答 2

1

你想要这样的东西吗?为其他运输方式添加一个子数组。

$shippingCostData = array(
    'ground' => array(
        6 => 15.99,
        7 => 16.99,
        8 => 16.99,
        9 => 17.99,
        10 => 17.99,
        11 => 18.99,
        12 => 18.99,
        13 => 19.99,
        14 => 20.99,
        15 => 21.99,
        16 => 22.99,
        'default' => 14.99,
    ),
);

$method = 'ground';
$clubTotalSum = array_sum($clubTotal);
$shippingCost = (isset($shippingCostData[$method][$clubTotalSum]) ? $shippingCostData[$method][$clubTotalSum] : $shippingCostData[$method]['default']);

您还可以使用类似的方法来过滤运输方式以确保其有效。

$method = (isset($shippingCostData[$_POST['shippingMethod']]) ? $_POST['shippingMethod'] : key($shippingCostData));
于 2013-10-02T21:14:56.227 回答
1

您应该以在运行时更具可塑性的另一种形式定义运费。例如:

$costs = [
    1 => 14.99, // 1 or more = 14.99
    6 => 15.99, // 6 or more
    7 => 16.99,
    9 => 17.99,
];

然后,您可以编写一个函数,接收数字和成本数组并返回成本:

function calculateCost($items, $costs) {
    ksort($costs); // just to be on the safe side
    $result = reset($costs);
    foreach($costs as $number => $cost) {
        if ($number > $items) break;
        $result = $cost;
    }

    return $result;
}

完成此操作后,很容易保留多个成本数组并转发到您需要的数组,例如

$costs = [
    'ground' => [
        1 => 14.99,
        6 => 15.99,
    ],
    'air' => [
        1 => 24.99,
        6 => 25.99,
    ],
];

$shippingChoice = $_POST['ShipMethod'];
$cost = calculateCost(array_sum($clubTotal), $costs[$shippingChoice]);

您可以轻松地将其扩展到任意多种运输方式。

于 2013-10-02T21:16:03.280 回答