我希望使用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
谢谢你。
答案 0 :(得分:2)
你只需要一个foreach:
foreach ($sam as $s) {
echo $s['type'];
}