2017-02-11 12 views
0

配列をナビゲートするときに間違っているのはどうですか?私はphpとjsonの応答を使って緯度を取得する必要があります。 ありがとうございます。JSON google maps array

$googleurl='https://maps.googleapis.com/maps/api/geocode/json?address=Prague'; 
$json=file_get_contents($googleurl); 
$res=json_encode($json, true); 
print $res['results'][0]['geometry']['location']['lat']; 

答えて

0

エンコードしないjsonをデコードする必要があります。

は、

$res=json_decode($json, true); 
を使用してみてください