我有一个纬度和经度,我需要取国.
我用这个:
$geocode_stats = file_get_contents("http://maps.googleapis.com/maps/api/geocode/json?latlng=".$deal_lat.",".$deal_long . "&sensor=false");
$output_deals = json_decode($geocode_stats);
$country = $output_deals->results[2]->address_components[4]->long_name;
Run Code Online (Sandbox Code Playgroud)
有时它会提供正确的国家/地区名称,但有时会提供空白值,有时会返回城市名称.
有人可以帮忙吗?
我正在使用distinct我的query,但它仍然给我重复的肠道id.我究竟做错了什么?这是我的代码:
SELECT distinct(sd_did),sd_uid,sd_time
FROM shared_deals
WHERE sd_uid = '".$uid."'
ORDER BY sd_time DESC";
Run Code Online (Sandbox Code Playgroud)