php检查元素是否通过会话数组存在

时间:2016-04-18 01:52:22

标签: php arrays session

如何循环遍历会话数组并检查$_session['items'][1][p_alt-variation-1]等是否存在?如果某个项目具有这些附加变体,则[p_alt-variation- {n}]元素是动态的,因此它可能多于1个

的print_r($ _会话['项目'])

Array
(
[0] => Array
    (
        [p_name] => Hovid PetSep
        [p_code] => 336910
        [p_coverImg] => 14-1460428610-ulNvG.jpg
        [p_id] => 14
        [p_price] => 24.50
        [p_qty] => 2
    )

[1] => Array
    (
        [p_name] => X-Dot Motorbike Helmet G88 + Bogo Visor (Tinted)
        [p_code] => 2102649
        [p_coverImg] => 12-1460446199-wI5qx.png
        [p_id] => 12
        [p_price] => 68.00
        [p_alt-variation-1] => Red
        [p_alt-variation-2] => L
        [p_qty] => 1
    )

)

我想向用户展示如果某个项目的推车存在各种变化,如果包含像[p_alt-variation- {n}]这样的字符串,如何查找数组中的元素?

我使用foreach($_SESSION['items'] as $cart_item){ ... }循环所有购物车商品以显示商品信息。

感谢您的建议。

2 个答案:

答案 0 :(得分:2)

不是正则表达式大师,但您可以获取密钥并使用preg_grep进行检查。如果该关键字有多个键,则只需计算结果。

以下是这个想法:

foreach($_SESSION['items'] as $cart_item) { // loop the items
    $keys = array_keys($cart_item); // get the keys of the current batch
    // make the expression
    $matches = preg_grep('~^p_alt\-variation\-\d+~i', $keys); // simply just checking the key name with has a number in the end, adjust to your liking
    if(count($matches) > 1) { // if it has more than one, or just change this to how many do you want
        echo 'has more than one variation';
    }
}

如果您想使用其中一些键,只需使用$matches中找到的结果:

if(count($matches) > 1) {
    foreach($matches as $matched_key) {
        echo $cart_item[$matched_key];
    }
}

答案 1 :(得分:0)

会话变量就像任何其他数组值一样;你总是可以使用isset函数。请参阅:http://php.net/manual/en/function.isset.php