从数组中提取数据(PHP)

时间:2012-05-22 16:01:21

标签: php arrays request

我创建了一个销售各种卡片的简单订单。这些卡有不同的颜色。下面的代码显示了提供的颜色。我需要能够从下面的数组中提取数据,以便我可以确定用户在表单上选择的每种颜色中有多少用于订购。

Array
(
    [qty] => Array
        (
            ['red'] => 0
            ['blue'] => 0
            ['green'] => 0
            ['yellow'] => 0
            ['orange'] => 0
            ['white'] => 0
            ['black'] => 0
            ['purple'] => 0
            ['teal'] => 0
            ['grey'] => 0
        )

对此我提供的任何帮助都非常感谢。

2 个答案:

答案 0 :(得分:0)

尝试这样的事情:

<?php
    $some_input = array('red','red','white');
    $a =array( 'qty' => array(
    'red' => 0,
    'blue' => 0,
    'green' => 0,
    'yellow' => 0,
    'orange' => 0,
    'white' => 0,
    'black' => 0,
    'purple' => 0,
    'teal' => 0,
    'grey' => 0,
));
    $f = function($x) use(&$a)
    {
        if(in_array($x, $a['qty']))
        {
            $a['qty'][$x]++;
        }
    };
    array_map($f, $some_input);

    var_dump($a);
?>

您可以在按钮粘贴

中看到正在运行here的代码

答案 1 :(得分:0)

您是否只想在页面上显示信息?

如果是这样,这应该为你完成工作(假设你的数组被称为$ array):

<table>
    <thead>
        <tr>
            <th>Colour</th>
            <th>Qty</th>
        </tr>
    </thead>
    <tbody>
    <?php foreach($array['qty'] AS $colour => $total) { ?>
        <tr>
            <td><?php echo $colour; ?></td>
            <td><?php echo $total; ?></td>
        </tr>
    <?php } ?>
    </tbody>
</table>