douou6696 2014-01-06 11:59
浏览 35
已采纳

在会话变量中循环父数组

In testing code to learn how arrays work when stored to session variables I have made the following stored arrays:

$id=17; //product #17
$_SESSION['cart']['items'][$id]=array(
   'quantity'=>1,
   'SKUNumber'=>'GL335-a',
   'Name'=>'Widget',
   'UnitPrice'=>14.95
);
$id=25; 
$_SESSION['cart']['items'][$id]=array(
   'quantity'=>3,
   'SKUNumber'=>'GL398-c',
   'Name'=>'Mega-Widget',
   'UnitPrice'=>34.95
);
$id=19;
$_SESSION['cart']['items'][$id]=array(
   'quantity'=>1,
   'SKUNumber'=>'GL335-a',
   'Name'=>'Widget',
   'UnitPrice'=>14.95
);

I am confused on how to loop through the Key > Values at the ITEM level:

foreach($_SESSION['cart']['items'][25] as $key=>$value) // echo/loop all stored vaules in the item 25 array in session cart
    {
    // and print out the values
    echo $key." | ".$value."<br />";
    }

correctly produces 1 occurrence of the array stored in item 25:

  • quantity | 3
  • SKUNumber | GL398-c
  • Name | Mega-Widgets
  • UnitPrice | 34.95

But, when i remove the [25] from the code, i get: 17 | Array, 25 | Array, 13 | Array and a warning: "Notice: Array to string conversion in..."

What I want to produce is:

quantity: 1 | SKUNumber: GL335-a |Name: Widget |UnitPrice: 14.95

quantity: 3 | SKUNumber: GL398-c |Name: Mega-Widget |UnitPrice: 34.95

quantity: 1 | SKUNumber: GL378-b |Name: Super Widget |UnitPrice: 29.95

I'm obviously looping through the result set in a wrong way but not sure the correct way to loop through it to get the result I'm looking for. Thanks for any help.

展开全部

  • 写回答

3条回答 默认 最新

  • doufei2662 2014-01-06 12:05
    关注
    <?php
        foreach($_SESSION['cart']['items'] as $arr)
        {
            echo "quantity: $arr['quantity'] | SKUNumber: $arr['SKUNumber']: GL378-b | Name: $arr['Name'] | UnitPrice: $arr['UnitPrice']";
        }
    

    About Notice: Array to string conversion in, you're going to print out $value which is an array not a string so that's why you get that notice.

    You should iterate over your array with another foreach loop or you can go with the my snippet.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部