手机
当前位置:查字典教程网 >编程开发 >php教程 >Array of country list in PHP with Zend Framework
Array of country list in PHP with Zend Framework
摘要:复制代码代码如下:publicstaticfunctioncountryList($local){$locale=newZend_Local...

复制代码 代码如下:

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;

}

【Array of country list in PHP with Zend Framework】相关文章:

PHP ASCII码与字符串的相互转换

vBulletin Forum 2.3.xx SQL Injection

PHP 和 MySQL 基础教程(二)

用PHP调用数据库的存贮过程!

phpmyadmin操作流程

人大复印资料处理程序_补充篇

一个php作的文本留言本的例子(二)

用PHP实现WEB动态网页静态

多php服务器实现多session并发运行

WINDOWS 2000下使用ISAPI方式安装PHP

精品推荐
分类导航