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: obfuscation-test.php
<?php require_once('../php-iban.php'); $ibans = `cat example-ibans/*`; $lines = explode("\n",$ibans); foreach($lines as $iban) { $iban = iban_to_machine_format($iban); print iban_to_human_format($iban) . "\n"; print iban_to_obfuscated_format($iban) . "\n"; } ?>