Ejemplo n.º 1
0
 }
 print "): " . iban_country_get_country_name($countrycode) . "]\n";
 # output remaining country properties
 print "Is a SEPA member? ";
 if (iban_country_is_sepa($countrycode)) {
     print "Yes";
 } else {
     print "No";
 }
 print ".\n";
 # central bank
 print "Central Bank: ";
 $central_bank_name = iban_country_get_central_bank_name($countrycode);
 if ($central_bank_name != '') {
     print $central_bank_name;
     $central_bank_url = iban_country_get_central_bank_url($countrycode);
     if ($central_bank_url != '') {
         print " ({$central_bank_url})";
     }
 } else {
     print "None.";
 }
 print "\n";
 # parent_registrar
 print "Has own team of bureaucrats? ";
 $parent_registrar = iban_country_get_parent_registrar($countrycode);
 if ($parent_registrar != '') {
     print "No (outsources to the wise experts of '" . $parent_registrar . "')\n";
 } else {
     print "Yes.\n";
 }
Ejemplo n.º 2
0
 public function CentralBankURL()
 {
     return iban_country_get_central_bank_url($this->code);
 }