PHP头条
热点:

ArrayofcountrylistinPHPwithZendFramework


代码如下:
public static function countryList($local)
{
$locale = new Zend_Locale('en_US');
$countries = ($locale->getTranslationList('Territory', $local, 2));
asort($countries, SORT_LOCALE_STRING);

$countries = array_combine($countries, $countries);

return $countries;
}

www.phpzy.comtrue/php/13604.htmlTechArticleArrayofcountrylistinPHPwithZendFramework 代码如下: public static function countryList($local) { $locale = new Zend_Locale('en_US'); $countries = ($locale->getTranslationList('Territory', $local, 2)); asort($countries, SORT_LOCALE_STRING...

相关文章

相关频道:

PHP之友评论

今天推荐