Exemple #1
0
 function all()
 {
     $countries_array = array();
     foreach (AkCountries::getCountriesDescriptions() as $country_string) {
         list($code, $country) = explode('|', $country_string);
         $countries_array[$country] = $code;
     }
     return $countries_array;
 }