PHP code example of irabbi360 / php-credit-card-validator

1. Go to this page and download the library: Download irabbi360/php-credit-card-validator library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

irabbi360 / php-credit-card-validator example snippets


'aliases' => array(

    'App'             => 'Illuminate\Support\Facades\App',
    ...
    'View'            => 'Illuminate\Support\Facades\View',

    'CreditCard'      => 'Irabbi360\CreditCard',

),

$card = CreditCard::validCreditCard('5500005555555559', 'mastercard');
print_r($card);

$card = CreditCard::validCreditCard('371449635398431');
print_r($card);

$validCvc = CreditCard::validCvc('234', 'visa');
var_dump($validCvc);

$validDate = CreditCard::validDate('2013', '07'); // past date
var_dump($validDate);
json
""irabbi360/php-credit-card-validator": "1.*"
},