tajawal/credit-card

信用卡生成器

维护者

详细信息

github.com/tajawal/credit-card

1.0.0 2016-07-24 08:40 UTC

This package is not auto-updated.

Last update: 2020-08-07 20:29:34 UTC


README

##信用卡生成器

###安装

在 composer.json 中要求此包

"require": {
    "tajawal/credit-card": "dev-master"
},

##如何使用


<?php
use Tajawal\CreditCard\CreditCard;

$types = CreditCard::getTypes();
foreach ($types as $type) {
    echo 'Type:' . $type . ' Number:' . CreditCard::Generate($type);
    echo PHP_EOL;
}