欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-05-29 23:28:10
...
  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