2

请我制作了这段代码来获取经度和纬度:

$addresss = "France+mande-lieu-la-napol";
$region   = "Alpes-Maritimes";
$urll      = "http://maps.google.com/maps/api/geocode/json?address=$addresss&sensor=false&region=$region";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $urll);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$response = curl_exec($ch);
curl_close($ch);
$response_a = json_decode($response);

var_dump ($response_a->results[0]->geometry->location->lat );

var_dump ( $response_a->results[0]->geometry->location->lng );

这段代码给了我结果:

float(43.546232) float(6.938309)

但实际上它必须给我

float(43.546232) float(6.938309000000004) 

请问我应该怎么做才能获得完整的经度?

4

1 回答 1

1

您应该使用json_decode($json, true, 512, JSON_BIGINT_AS_STRING)这样 lat 和 long 将作为字符串而不是浮点数返回。

于 2012-12-05T18:53:04.680 回答