ここと追加の記事に関するいくつかの Q&A を読みましたが、このスクリプトを取得して、JSON リターンから関連する値を表示することはできません (これは、この Google マップの呼び出しからの長さと緯度です)。
<?php
// Address for Google to search
$address = 'London,UK';
// Get the map json data from Google Maps using the $address variable
$googleCall = 'http://maps.googleapis.com/maps/api/geocode/json?address=' . $address .'&sensor=false';
$json = file_get_contents($googleCall);
//header("Content-type: application/json");
//echo $json;
echo $json->results->geometry->location->lat;
echo $json->results->geometry->location->lng;
?>
私はそこに 99% いると確信していますが、エラーの場所がわかりません。