KO
|
EN
gitlite — search
Search
#java
#php
#python
#c-plus-plus
#hacktoberfest
#c
#android
#ruby
#javascript
#game
#arduino
#lua
iban
★ 30
Open GitHub ↗
PHP IBAN validation library
Download README (.md)
Explore Similar Repositories
Iban
:
[Deprecated] Validating and generating international :bank: bank account numbers (IBAN)
iban-tools
:
Validate IBAN numbers
bankster
:
An IBAN account numbers and BIC validation tool for Elixir.
iran-sheba
:
Validate and Recognize IBAN in Iran
laravel-spanish-validator
:
Laravel validator for spanish stuff: NIF, NIE, CIF, NSS, IBAN, Postal Code, Phone numbers
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
iban
?
Download (.md)
# IBAN [![Build Status][badge-build]][build] [![Scrutinizer][badge-quality]][quality] [![Software License][badge-license]][license] [![Total Downloads][badge-downloads]][downloads] cmpayments/iban is a PHP 5.5+ library for validating IBAN bank account numbers. It currently supports IBAN validation of 99 countries ## Installation To install cmpayments/iban just require it with composer ``` composer require cmpayments/iban ``` ## Usage example ```php <?php require 'vendor/autoload.php'; use CMPayments\IBAN; $iban = new IBAN('NL58ABNA0000000001'); // validate the IBAN if (!$iban->validate($error)) { echo "IBAN is not valid, error: " . $error; } // pretty print IBAN echo $iban->format(); ``` ## Submitting bugs and feature requests Bugs and feature request are tracked on [GitHub](https://github.com/cmpayments/iban/issues) ## Copyright and license The cmpayment/iban library is copyright © [Bas Peters](https://github.com/baspeters/) and licensed for use under the MIT License (MIT). Please see [LICENSE][] for more information. [badge-build]: https://img.shields.io/travis/cmpayments/iban.svg?style=flat-square [badge-quality]: https://img.shields.io/scrutinizer/g/cmpayments/iban.svg?style=flat-square [badge-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square [badge-downloads]: https://img.shields.io/packagist/dt/cmpayments/iban.svg?style=flat-square [license]: https://github.com/cmpayments/iban/blob/master/LICENSE [build]: https://travis-ci.org/cmpayments/iban [quality]: https://scrutinizer-ci.com/g/cmpayments/iban/ [coverage]: https://coveralls.io/r/cmpayments/iban?branch=master [downloads]: https://packagist.org/packages/cmpayments/iban