多维数组格式

时间:2015-12-13 11:38:29

标签: php multidimensional-array

我希望使用type的键回显数组值,这是我的代码,

foreach ($sam as $key => $sa) {
    foreach ($sa as $s) {
        echo $s['type'];
    }
}

这是数组$sam

的内容
array (size=1)
  0 => 
    array (size=5)
      'type' => string 'days' (length=4)
      'bookable' => string 'no' (length=2)
      'priority' => int 10
      'from' => string '1' (length=1)
      'to' => string '1' (length=1)

我的foreach代码结果警告:非法字符串偏移'类型',我不知道为什么?你可以帮助我回复type谢谢你。

1 个答案:

答案 0 :(得分:2)

你只需要一个foreach:

foreach ($sam as $s) {
    echo $s['type'];
}