オタワの入力ホテルのフォーマットされた住所を出力しようとしています。結果には、必要なすべてのデータと不要なものが含まれています。これを切り詰める必要があります。何か案は?
$address = urlencode("Hotels, in Ottawa");
$geocodeURL = "https://maps.googleapis.com/maps/api/place/textsearch/json?query=hotels+in+Ottawa&sensor=false&key=mykey";
$ch = curl_init($geocodeURL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
$geocode = json_decode($result);
echo $result;
//echo $formatted_address = $geocode->data[0]->formatted_address;