Advertisement
rejuancse

currency-helper

Sep 19th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.08 KB | None | 0 0
  1. <?php
  2. if ( ! function_exists( 'getCurrencyList' ) ) {
  3.  
  4.     function getCurrencyList(){
  5.         return array(
  6.         'Select one'              => '',           
  7.         'United States dollar($)' => 'USD:$',
  8.         'British pound(£)'       => 'GBP:£',
  9.         'Russian Ruble(₽)'          => 'RUB:₽',
  10.         'Brazilian Real(R$)'      => 'BRL:R$',
  11.         'Canadian Dollar($)'      => 'CAD:$',
  12.         'Czech Koruna(Kč)'       => 'CZK:Kč',
  13.         'Danish Krone(kr.)'       => 'DKK:kr.',
  14.         'Euro(€)'               => 'EUR:€',
  15.         'Hong Kong Dollar(HK$)'   => 'HKD:HK$',
  16.         'Hungarian Forint(Ft)'    => 'HUF:Ft',
  17.         'Israeli New Sheqel(₪)'     => 'ILS:₪',
  18.         'Japanese Yen(¥)'        => 'JPY:¥',
  19.         'Malaysian Ringgit(RM)'   => 'MYR:RM',
  20.         'Mexican Peso(Mex$)'      => 'MXN:Mex$',
  21.         'Norwegian Krone(kr)'     => 'NOK:kr',
  22.         'New Zealand Dollar($)'   => 'NZD:$',
  23.         'Philippine Peso(₱)'    => 'PHP:₱',
  24.         'Polish Zloty(zł)'       => 'PLN:zł',
  25.         'Singapore Dollar($)'     => 'SGD:$',
  26.         'Swedish Krona(kr)'       => 'SEK:kr',
  27.         'Swiss Franc(CHF)'        => 'CHF:CHF',
  28.         'Taiwan New Dollar(角)'      => 'TWD:角',
  29.         'Thai Baht(฿)'              => 'THB:฿',
  30.         'Turkish Lira(TRY)'       => 'TRY:TRY'
  31.         );
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement