Get part of array string

Posted by user1560295 on Stack Overflow See other posts from Stack Overflow or by user1560295
Published on 2012-09-26T15:26:54Z Indexed on 2012/09/26 15:37 UTC
Read the original article Hit count: 219

Filed under:
|
|
|
|

Hello my output PHP code is :

Array ( [country] => BG - Bulgaria )

... and he comes from here :

<?php
       $ip = $_SERVER['REMOTE_ADDR'];
       print_r(geoCheckIP($ip));
       //Array ( [domain] => dslb-094-219-040-096.pools.arcor-ip.net [country] => DE - Germany [state] => Hessen [town] => Erzhausen )

       //Get an array with geoip-infodata
       function geoCheckIP($ip)
       {
               //check, if the provided ip is valid
               if(!filter_var($ip, FILTER_VALIDATE_IP))
               {
                       throw new InvalidArgumentException("IP is not valid");
               }

               //contact ip-server
               $response=@file_get_contents('http://www.netip.de/search?query='.$ip);
               if (empty($response))
               {
                       throw new InvalidArgumentException("Error contacting Geo-IP-Server");
               }

               //Array containing all regex-patterns necessary to extract ip-geoinfo from page
               $patterns=array();

               $patterns["country"] = '#Country: (.*?)&nbsp;#i';

               //Array where results will be stored
               $ipInfo=array();

               //check response from ipserver for above patterns
               foreach ($patterns as $key => $pattern)
               {
                       //store the result in array
                       $ipInfo[$key] = preg_match($pattern,$response,$value) && !empty($value[1]) ? $value[1] : '';
               }

               return $ipInfo;
       }

?>

How can I get ONLY the name of the Country like in my case "Bulgaria"? I think it will happen with preg_replace or substr but i dont know what is the better solution now.

© Stack Overflow or respective owner

Related posts about php

Related posts about location