Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Array of country list in PHP with Zend Framework

Array of country list in PHP with Zend Framework, ordered by country name

   1  
   2  <?php
   3  header('Content-Type: text/html; charset=utf-8');
   4  require_once 'Zend/Locale.php';
   5  
   6  $locale = new Zend_Locale('en_US');
   7  
   8  $countries = ($locale->getTranslationList('country', 'en'));
   9  asort($countries, SORT_LOCALE_STRING);
  10  
  11  echo "<pre>";
  12  print_r($countries);
  13  echo "</pre>";
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS