Difference between revisions of "Functions:addressCountryNameGet"

From Whirlwind eCommerce Wiki
Jump to: navigation, search
(New page: == Description == Returns a full country name by passing it the ISO 2 char country abbreviation == Syntax == $countryName = addressCountryNameGet($ISO); == Paramaters == *$ISO STRING ::...)
(No difference)

Revision as of 14:54, 18 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;