iban = $iban; } public function Verify($iban='',$machine_format_only=false) { if($iban!='') { return verify_iban($iban,$machine_format_only); } return verify_iban($this->iban,$machine_format_only); # we could throw exceptions of various types, but why - does it really # add anything? possibly some slightly better user feedback potential. # however, this can be written by hand by performing individual checks # ala the code in verify_iban() itself where required, which is likely # almost never. for the increased complexity and # maintenance/documentation cost, i say, therefore: no. no exceptions. } public function VerifyMachineFormatOnly($iban='') { if($iban!='') { return verify_iban($iban,true); } return verify_iban($this->iban,true); } public function MistranscriptionSuggestions() { return iban_mistranscription_suggestions($this->iban); } public function MachineFormat() { return iban_to_machine_format($this->iban); } public function HumanFormat() { return iban_to_human_format($this->iban); } public function ObfuscatedFormat() { return iban_to_obfuscated_format($this->iban); } public function Country($iban='') { return iban_get_country_part($this->iban); } public function Checksum($iban='') { return iban_get_checksum_part($this->iban); } public function NationalChecksum($iban='') { return iban_get_nationalchecksum_part($this->iban); } public function BBAN() { return iban_get_bban_part($this->iban); } public function VerifyChecksum() { return iban_verify_checksum($this->iban); } public function FindChecksum() { return iban_find_checksum($this->iban); } public function SetChecksum() { $this->iban = iban_set_checksum($this->iban); } public function ChecksumStringReplace() { return iban_checksum_string_replace($this->iban); } public function FindNationalChecksum() { return iban_find_nationalchecksum($this->iban); } public function SetNationalChecksum() { $this->iban = iban_set_nationalchecksum($this->iban); } public function VerifyNationalChecksum() { return iban_verify_nationalchecksum($this->iban); } public function Parts() { return iban_get_parts($this->iban); } public function Bank() { return iban_get_bank_part($this->iban); } public function Branch() { return iban_get_branch_part($this->iban); } public function Account() { return iban_get_account_part($this->iban); } public function Countries() { return iban_countries(); } } # IBANCountry Class IBANCountry { # constructor with code function __construct($code = '') { $this->code = $code; } public function Code() { return $this->code; } public function Name() { return iban_country_get_country_name($this->code); } public function DomesticExample() { return iban_country_get_domestic_example($this->code); } public function BBANExample() { return iban_country_get_bban_example($this->code); } public function BBANFormatSWIFT() { return iban_country_get_bban_format_swift($this->code); } public function BBANFormatRegex() { return iban_country_get_bban_format_regex($this->code); } public function BBANLength() { return iban_country_get_bban_length($this->code); } public function IBANExample() { return iban_country_get_iban_example($this->code); } public function IBANFormatSWIFT() { return iban_country_get_iban_format_swift($this->code); } public function IBANFormatRegex() { return iban_country_get_iban_format_regex($this->code); } public function IBANLength() { return iban_country_get_iban_length($this->code); } public function BankIDStartOffset() { return iban_country_get_bankid_start_offset($this->code); } public function BankIDStopOffset() { return iban_country_get_bankid_stop_offset($this->code); } public function BranchIDStartOffset() { return iban_country_get_branchid_start_offset($this->code); } public function BranchIDStopOffset() { return iban_country_get_branchid_stop_offset($this->code); } public function NationalChecksumStartOffset() { return iban_country_get_nationalchecksum_start_offset($this->code); } public function NationalChecksumStopOffset() { return iban_country_get_nationalchecksum_stop_offset($this->code); } public function RegistryEdition() { return iban_country_get_registry_edition($this->code); } public function SWIFTOfficial() { return iban_country_get_country_swift_official($this->code); } public function IsSEPA() { return iban_country_is_sepa($this->code); } public function IANA() { return iban_country_get_iana($this->code); } public function ISO3166() { return iban_country_get_iso3166($this->code); } public function ParentRegistrar() { return iban_country_get_parent_registrar($this->code); } public function CurrencyISO4217() { return iban_country_get_currency_iso4217($this->code); } public function CentralBankURL() { return iban_country_get_central_bank_url($this->code); } public function CentralBankName() { return iban_country_get_central_bank_name($this->code); } public function Membership() { return iban_country_get_membership($this->code); } public function IsEuMember() { return iban_country_get_is_eu_member($this->code); } } ?>