Download the PHP package crease29/openiban-client without Composer
On this page you can find all versions of the php package crease29/openiban-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download crease29/openiban-client
More information about crease29/openiban-client
Files in crease29/openiban-client
Download crease29/openiban-client
More information about crease29/openiban-client
Files in crease29/openiban-client
Vendor crease29
Package openiban-client
Short Description PHP client for openiban.com API
License GNU General Public License v3.0
Package openiban-client
Short Description PHP client for openiban.com API
License GNU General Public License v3.0
Please rate this library. Is it a good library?
Informations about the package openiban-client
OpenIBAN.com PHP Client
If you have any questions, drop me an email: [email protected]
Feel free to contribute! :)
Thanks to @fourcube for providing a simple IBAN API!
Install via Composer
composer install crease29/openiban-client
Usage
openiban.com documentation: https://openiban.com/
Technical validation of IBAN numbers
require 'vendor/autoload.php';
use OpenIban\Client;
$client = new Client();
$IBAN = 'DE89370400440532013000';
$check1 = $client->validate($IBAN); // $validateBankCode = false, $getBIC = false
$check2 = $client->validate($IBAN, true); // $validateBankCode = true, $getBIC = false
$check3 = $client->validate($IBAN, true, true); // $validateBankCode = true, $getBIC = true
Calculation of IBAN numbers
require 'vendor/autoload.php';
use OpenIban\Client;
$client = new Client();
$IBANData = $client->calculate('DE', '37040044', '0532013000');
Licence
This project uses the GNU General Public License v3.0.
All versions of openiban-client with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.0
The package crease29/openiban-client contains the following files
Loading the files please wait ....