Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 284 Bytes

File metadata and controls

15 lines (10 loc) · 284 Bytes

PHP Open IBAN implementation

Usage

require __DIR__ . '/../vendor/autoload.php';

$repo = new \Kristofvc\OpenIban\Repository\IbanRepository();

$message = $repo->findIban('BE30000000001111');

if ($message->isValid() {
    $bic = $message->getBankData()->getBic();
}