jsonからfromatted_addressだけをエコーしたいのですが、どのようにしたらよいのでしょうか?以下
コード:php curl jsonから逆ジオコードを取得する方法
<?PHP
$ch = curl_init();
$url = 'http://maps.googleapis.com/maps/api/geocode/json?latlng=22.569794,88.357934';
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, FALSE);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 1);
curl_setopt($ch, CURLOPT_HEADER, False);
curl_setopt($ch, CURLOPT_NOBODY, False); //only header
print "<pre>";
$bko = print_r(curl_exec($ch));
print "</pre>";
?>
'json_decode($ string、true)'を使って配列に変換してください。 – DevDonkey
こんにちは私はjson配列から "formatted_address"をエコーしたい、私はすでにそれを印刷しますformatted_address- plsに貼り付けてechoしたい –