arabhossain/php-cards-detector

任何类型的借记卡或信用卡类型检测器

v1.1.4 2019-10-12 11:19 UTC

This package is auto-updated.

Last update: 2024-09-12 22:37:14 UTC


README

确定信用卡类型的实用工具

安装

composer require arabhossain/php-cards-detector

支持的卡片

  • Amex
  • 迪纳俱乐部
  • 发现
  • JCB
  • Maestro
  • 万事达卡
  • visa
  • 用法

    require "vendor/autoload.php";
    
    echo \CardDetector\Detector::detect("5555555555554444")->get_name();
    echo \CardDetector\Detector::detect("5555555555554444")->get_logo();
    echo \CardDetector\Detector::detect("5555555555554444")->get_logo_base64();
    
    

    或者你可以简单地使用

    use  \CardDetector\Detector as CardDetector;
    echo CardDetector::detect(23232313131313)->get_name();