function ReferZillaCountry() { include "tabgeo_country_v4.php"; $ip = $_SERVER['REMOTE_ADDR']; $country_code = tabgeo_country_v4($ip); return $country_code; }
/** * Get the country by IP * @return mixed|string */ protected static function get_country() { $ip = self::get_ip(); $country = tabgeo_country_v4($ip); return $country; }
function __construct($ip) { $this->country = tabgeo_country_v4($ip); }