dsf323233323332 2013-12-05 15:27
浏览 122
已采纳

php循环遍历数组 - 输出数组值和键

I have the following array structure in place that i have to keep as it's an existing website:

$label_options = array(
    "label_size" => 'A4',
    "label_position" => 'Top',
    "label_qty" => 50
);

$ink_options = array(
    "black" => 1,
    "colour" => 0
);

$item = array(
    "item_number" => 12546518,
    "item_type" => 'Canon',
    "item_label_options" => $label_options,   
    "item_ink_options" => $ink_options,
    "item_qty" => 2,      
    "item_price" => 13.99,
    "item_total" => 26.98,
    "item_delivery" => 2.49
);

if (isset($_SESSION['cart'])) {
    $_SESSION['cart'][$unique] = $item;
} else {
    $_SESSION['cart'] = array($unique => $item);
}

I now want to be able to output the values inside the arrays and the arrays inside the array. I can use the below:

foreach ($_SESSION['cart'] as $unique => $item) {
    print 'Item Number = '.$item['item_number'].'<br />';
    print 'Qty = '.$item['item_qty'].'<br />';
    print 'Price = '.$item['item_price'].'<br />';

    foreach ($item['item_label_options'] as $key => $option) {
       print $option['label_size'].'<br />';
       print $option['label_position'].'<br />';
       print $option['label_qty'].'<br />';
    }
}

which successfully outputs the first loop but not the second - just putting the first letter of each:

Item Number = 12546518
Qty = 1
Price = 7.99

A // should be A4
T // should be Top
5 // should be 50

Also is there a way i can loop and output all the values without having to actually write 'Item Number = ... it can just output each key with its value as i won't always know how many and what the names of each one are?

  • 写回答

3条回答 默认 最新

  • doushi1847 2013-12-05 15:55
    关注

    In your inner foreach loop, the keys label_size, label_position and label_qty don't exist. When a key doesn't exist, I guess it's defaulting to 0 and as a result just gives you the first letter. This will produce what you want:

    foreach ($_SESSION['cart'] as $unique => $item) {
        print 'Item Number = '.$item['item_number'].'<br />';
        print 'Qty = '.$item['item_qty'].'<br />';
        print 'Price = '.$item['item_price'].'<br />';
        foreach ($item['item_label_options'] as $key => $option) {
           print $option.'<br />';
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试