当前位置:Gxlcms > PHP教程 > 通过IP地址取得所在国家的PHP代码

通过IP地址取得所在国家的PHP代码

时间:2021-07-01 10:21:17 帮助过:3人阅读

  1. function getLocationInfoByIp(){
  2. $client = @$_SERVER['HTTP_CLIENT_IP'];
  3. $forward = @$_SERVER['HTTP_X_FORWARDED_FOR'];
  4. $remote = @$_SERVER['REMOTE_ADDR'];
  5. $result = array('country'=>'', 'city'=>'');
  6. if(filter_var($client, FILTER_VALIDATE_IP)){
  7. $ip = $client;
  8. }elseif(filter_var($forward, FILTER_VALIDATE_IP)){
  9. $ip = $forward;
  10. }else{
  11. $ip = $remote;
  12. }
  13. $ip_data = @json_decode
  14. (file_get_contents("http://www.geoplugin.net/json.gp?ip=".$ip));
  15. if($ip_data && $ip_data->geoplugin_countryName != null){
  16. $result['country'] = $ip_data->geoplugin_countryCode;
  17. $result['city'] = $ip_data->geoplugin_city;
  18. }
  19. return $result;
  20. }
  21. ?>

PHP

人气教程排行