Functions:addressCountryNameGet
From Whirlwind eCommerce Wiki
Description
Returns a full country name by passing it the ISO 2 char country abbreviation
Syntax
$countryName = addressCountryNameGet($ISO);
Paramaters
- $ISO STRING
- 2 character ISO country abbreviation
Return Values
Returns string country name
Examples
// get Canada from CA $country = eV::addressCountryNameGet('CA'); // outputs: Canada echo $country;