Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
speed.bdcloud.fr /
includes /
php-iban /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
7.47
KB
-rw-r--r--
2020-09-02 15:32
mistranscriptions.txt
2.05
KB
-rw-r--r--
2020-09-02 15:32
oophp-iban.php
3.51
KB
-rw-r--r--
2020-09-02 15:32
php-iban.php
16.43
KB
-rw-r--r--
2020-09-02 15:32
registry.txt
16.46
KB
-rw-r--r--
2020-09-02 15:32
Save
Rename
<?php # OO wrapper for 'php-iban.php' Class IBAN { function __construct($iban = '') { require_once('php-iban.php'); # load the procedural codebase $this->iban = $iban; } public function Verify($iban='') { if($iban!='') { return verify_iban($iban); } return verify_iban($this->iban); # 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 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 Country($iban='') { return iban_get_country_part($this->iban); } public function Checksum($iban='') { return iban_get_checksum_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 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 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 RegistryEdition() { return iban_country_get_registry_edition($this->code); } public function IsSEPA() { return iban_country_is_sepa($this->code); } } ?>