网站地图    收藏   

主页 > 后端 > php进阶知识 >

Array of country list in PHP with Zend Framework,需要的朋

来源:自学PHP网    时间:2014-09-18 13:10 作者: 阅读:

[导读] Array of country list in PHP with Zend Framework,需要的朋友可以参考下。...

复制代码 代码如下:

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

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论