需要帮助解码PHP的JSON输出

时间:2014-04-09 21:13:13

标签: php json google-maps variables decode

以下是我正在使用的示例JSON输出:

http://maps.google.com/maps/api/geocode/json?components=postal_code:90210&sensor=false

以下是尝试从此位置提取纬度值:

$postalLong = $jsonOutput>results[0]->formatted_address[0]->location[1]->lng;   

我尝试了几种变体,但它不起作用。我怎样才能将34.1030032值应用于此变量?

1 个答案:

答案 0 :(得分:1)

我猜你错了。试试这个 -

$json->results[0]->geometry->location->lat;