PHP code example of chekalskiy / php-banks-db
1. Go to this page and download the library: Download chekalskiy/php-banks-db 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/ */
chekalskiy / php-banks-db example snippets
$card_prefix = '5275 9400 0000 0000'; // we only need first 6 digits but it could be the whole card number
try {
$bank_db = new BankDb();
$bank_info = $bank_db->getBankInfo($card_prefix);
$result = [
'is_unknown' => $bank_info->isUnknown(), // is bank unknown
'name' => $bank_info->getTitle(true),
'color' => $bank_info->getColor(),
'type' => $bank_info->getCardType(),
];
return $result;
} catch (BankDbException $e) {
// todo handle exception
}
composer