PHP code example of samyan / bankcard-validator
1. Go to this page and download the library: Download samyan/bankcard-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/ */
samyan / bankcard-validator example snippets
$card = BankCard::validateCardNumber('5500005555555559', 'mastercard');
print_r($card);
$card = BankCard::validateCardNumber('371449635398431');
print_r($card);
$validCvc = BankCard::isValidCvc('234', 'visa');
var_dump($validCvc);
$validDate = BankCard::isValidDate('2013', '07'); // past date
var_dump($validDate);