WP File Manager
Current Path:
/
home
/
argothem
/
www
/
organecyberpresse
/
plugins
/
auto
/
verifier
/
v3.8.0
/
lib
/
php-iban
/
utils
/
Name
Action
..
bis-banks
Edit
convert-registry.php
Edit
dump.php
Edit
example-ibans
explode-iban
Edit
generate-supported-countries-list
Edit
obfuscation-test.php
Edit
ootest.php
Edit
other-tests.php
Edit
test.php
Edit
validate-list.php
Edit
Editing: explode-iban
#!/usr/bin/php <?php require_once(dirname(__FILE__) . '/../php-iban.php'); if(!isset($argv[1])) { print "usage: " . $argv[0] . " <IBAN>\n"; print " where <IBAN> is a valid IBAN to display the components of.\n"; exit(1); } $iban = $argv[1]; $parts = iban_get_parts($argv[1]); print_r($parts); exit(0); ?>