Determine the ownership of the bank card number

WBOY
Release: 2016-07-30 13:30:52
Original
1097 people have browsed it

header('Content-type:text/html;charset=utf-8');
require_once('bankList.php');
function bankInfo($card,$bankList)
{
$card_8 = substr($card, 0, 8);
if (isset($bankList[$card_8])) {
echo $bankList[$card_8];
return;
}
$card_6 = substr($card, 0, 6 );
if (isset($bankList[$card_6])) {
echo $bankList[$card_6];
return;
}
$card_5 = ​​substr($card, 0, 5);
if (isset($ bankList[$card_5])) {
echo $bankList[$card_5];
return;
}
$card_4 = substr($card, 0, 4);
if (isset($bankList[$card_4])) { B b b k



Return;
}

}} '

}

🎜echo Bankinfo (’6228481552887309119', $ Banklist); p: // www.jb51.net/article/65178.htm🎜 🎜 The above has introduced how to determine the ownership of bank card numbers, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials. 🎜 🎜 🎜
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!