You are here

function countries_api_numcode_get_country in Country codes API 5

Same name and namespace in other branches
  1. 6 countries_api.module \countries_api_numcode_get_country()

ISO 3166-1 numcode to country API function

Parameters

$code : An string containg the numcode value

Return value

string Returns an array containing the country fields

1 call to countries_api_numcode_get_country()
countries_api_numcode_get_name in ./countries_api.module
ISO 3166-1 numcode to country name API function

File

./countries_api.module, line 147

Code

function countries_api_numcode_get_country($code) {
  return _countries_api_numcode_get_country($code, 'numcode');
}