You are here

function geoip_continent_name in GeoIP API 7.2

Returns the continent name for a given IP.

Parameters

string $ip: The ip to resolve, defaults to the current users ip.

Return value

string|FALSE Continent name or FALSE on error.

Related topics

3 calls to geoip_continent_name()
geoip_admin_settings in ./geoip.admin.inc
Menu callback and form builder for admin/settings/geoip.
geoip_tokens in ./geoip.tokens.inc
Implements hook_tokens().
geoip_views_query_substitutions in ./geoip.module
Implements hook_views_query_substitutions().

File

./geoip.module, line 247
API for using the MaxMind GeoLite Country database.

Code

function geoip_continent_name($ip = NULL) {
  $ip = $ip ? $ip : geoip_ip_address();
  if ($gi = geoip_instance()) {
    return $gi
      ->continentName($ip);
  }
  return FALSE;
}