欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Array of country list in PHP with Zend Framework

程序员文章站 2022-10-05 21:14:00
复制代码 代码如下: public static function countrylist($local) { $locale = new zend_locale('en_...
复制代码 代码如下:

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;
}