我正在尝试从angellist API中读取数据,现在正在运行。只有当我打印出数据时,才能看到我需要的所有数据都是以0开头的第二个数组。在第二个数组中,我看到了我需要的数据。
这是我的代码:
<?php
$url = file_get_contents('https://api.angel.co/1/jobs');
$angellist = json_decode($url,true);
foreach($angellist as $list=>$item):
$list_title = $list->$item->title;
pr($list_title);
endforeach;
?>
使用此代码,我得到值NULL。为了检索数据,我需要更改什么?
我添加了一张我有atm的数组图片: