stgit90 / detect-valid-card
stgit90用于验证并确定银行卡类型的实用程序
1.1.2
2024-05-13 14:08 UTC
Requires
- php: >=7.2.5
Requires (Dev)
- phpunit/phpunit: ^9.1
This package is not auto-updated.
Last update: 2024-09-30 15:51:37 UTC
README
stgit90用于验证并确定银行卡类型的实用程序
安装
composer require stgit90/detect-valid-card
用法
require "/vendor/autoload.php";
use CardValidDetect\ValidDetect;
$detector = new ValidDetect();
$card = '4916847576752405';
if($detector->detect('4916847576752405')->isValid()){
echo $detector->getType() //Visa
}