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

1. Go to this page and download the library: Download convenia/credit-card-validator-php 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/ */

    

convenia / credit-card-validator-php example snippets


'aliases' => array(

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

    'CreditCard'      => 'Inacho\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
""convenia/credit-card-validator-php": "1.*"
},