DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Array Of Country List In PHP With Zend Framework
Array of country list in PHP with Zend Framework, ordered by country name
<?php
header('Content-Type: text/html; charset=utf-8');
require_once 'Zend/Locale.php';
$locale = new Zend_Locale('en_US');
$countries = ($locale->getTranslationList('country', 'en'));
asort($countries, SORT_LOCALE_STRING);
echo "<pre>";
print_r($countries);
echo "</pre>";






Comments
Snippets Manager replied on Sun, 2008/03/09 - 11:10pm