以下是我正在使用的示例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
值应用于此变量?
答案 0 :(得分:1)
我猜你错了。试试这个 -
$json->results[0]->geometry->location->lat;