根据银行卡号识别所属银行以及卡类型
目前支持两种识别方式:阿里API和正则,默认使用阿里的API
Via Composer
$ composer require scolib/bankcard
$bankcard = new Sco\Bankcard\Bankcard();
//$bankcard = new Sco\Bankcard\Bankcard(new Sco\Bankcard\Providers\RegexProvider());
// 返回一个Sco\Bankcard\Info实例
// 如果未识别 抛出异常 Sco\Bankcard\Exceptions\ValidationException
$info = $bankcard->info($cardNo);
// 银行卡信息(数组)
$info->getBankInfo();
// 所属银行代号
$info->getBankCode();
// 所属银行名称
$info->getBankName();
// 所属银行icon(如果有)
$info->getBankIcon();
// 卡类型代号
$info->getCardType();
// 卡类型名称
$info->getCardTypeName();
$ composer test
Please see CONTRIBUTING and CONDUCT for details.
If you discover any security related issues, please email slice1213@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.