Difference between revisions of "Functions:addressCountryNameGet"
From Whirlwind eCommerce Wiki
(New page: == Description == Returns a full country name by passing it the ISO 2 char country abbreviation == Syntax == $countryName = addressCountryNameGet($ISO); == Paramaters == *$ISO STRING ::...) |
|||
Line 1: | Line 1: | ||
+ | {{Page Template Functions Shortcuts}} | ||
== Description == | == Description == | ||
Returns a full country name by passing it the ISO 2 char country abbreviation | Returns a full country name by passing it the ISO 2 char country abbreviation |
Latest revision as of 14:03, 21 October 2008
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;