php解析geojson多级字符串

时间:2015-02-03 20:20:16

标签: php json parsing geojson

我正在努力解析从mapbox返回的geojson字符串以获取纬度和经度坐标,但很难获得所需的数据。

我目前的代码是:

$json = file_get_contents($url);
$myPostcodeLat = $json->features[0]->center[0];
$myPostcodeLong = $json->features[0]->center[1];

enter image description here

我知道url是正确的并且正确地返回数据,它只是解析返回的数据并不适用于我。

我已经尝试了一些其他SO响应来解析JSON数据,但到目前为止在获取两个必填字段方面没有运气。

0 个答案:

没有答案