zl程序教程

您现在的位置是:首页 >  其它

当前栏目

ArrayofcountrylistinPHPwithZendFramework

2023-06-13 09:14:30 时间
复制代码代码如下:

publicstaticfunctioncountryList($local)
{
$locale=newZend_Locale("en_US");
$countries=($locale->getTranslationList("Territory",$local,2));
asort($countries,SORT_LOCALE_STRING);

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

return$countries;
}