Pop\Geo\Geo::getHostInfo PHP Method

getHostInfo() public method

Get host info
public getHostInfo ( ) : array
return array
    public function getHostInfo()
    {
        return $this->hostInfo;
    }

Usage Example

示例#1
0
 public function testGetHostInfo()
 {
     if (function_exists('geoip_db_get_all_info')) {
         $g = new Geo(array('host' => 'www.google.com'));
         $info = $g->getHostInfo();
         $this->assertTrue(is_array($info));
     }
 }
All Usage Examples Of Pop\Geo\Geo::getHostInfo