我正在从另一个服务返回数组数据。JSON解码后得到的数据是这样的Array( [result] => Array ( [0] => Array ( [number] => INC00001234 [short_description] => LLKS portal outage ) [1] => Array ( [number] => INC00001235 [short_description] => Server degradation ) [2] => Array ( [number] => INC00001236 [short_description] => Printer not printing ) ))现在,我想要的只是循环遍历 JSON 并仅列出这样的数字Number : INC00001234Description : LLKS portal outage Number : INC00001235Description : Server degradationNumber : INC00001236Description : Printer not printing我怎么做?
2 回答
慕雪6442864
TA贡献1812条经验 获得超5个赞
我假设您的 JSON 数据位于变量中。我$data
在下面使用过,但你需要使用你的。
foreach($data['result'] as $line){ echo 'Number : ' . $line['number'] . '<br/>\nDescription : ' . $line['short_description'] . '<br/>\n'; }
小怪兽爱吃肉
TA贡献1852条经验 获得超1个赞
foreach($yourArray['result'] as $item){ echo "\nNumber:{$item['number']}\nDescription:{$item['short_description']}\n"; }
- 2 回答
- 0 关注
- 94 浏览
添加回答
举报
0/150
提交
取消