标签: php arrays json
当我尝试打印“ entry_history”数组中的特定项目时,出现错误。例如,当我打印ID时,会出现以下错误:
“警告:字符串偏移量'id'不合法”
<?PHP foreach($data['entry_history'] as $key=>$item) { ?> <td><?PHP echo $item['id']; ?></td> <?PHP } ?>