WC_Geo_IP::geoip_country_code_by_addr_v6( string $addr )

Country code by addr IPv6.


Description Description


Parameters Parameters

$addr

(Required)


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/class-wc-geo-ip.php

	public function geoip_country_code_by_addr_v6( $addr ) {
		$country_id = $this->geoip_country_id_by_addr_v6( $addr );
		if ( false !== $country_id && isset( $this->GEOIP_COUNTRY_CODES[ $country_id ] ) ) {
			return $this->GEOIP_COUNTRY_CODES[ $country_id ];
		}

		return false;
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.