Home >php教程 >php手册 >PHP实现根据银行卡号判断银行

PHP实现根据银行卡号判断银行

WBOY
WBOYOriginal
2016-06-06 20:04:392126browse

公司业务需要用到根据银行卡号查询银行卡的相关信息,如归属地,归属银行,卡的种类等,仔细研究了一番,分享给大家

bankList.php请在文章末尾下载

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])) { echo $bankList[$card_4]; return; } echo '该卡号信息暂未录入'; } bankInfo('6228481552887309119',$bankList);

banklist.php下载

以上所述就是本文的全部内容了,,希望大家能够喜欢。

Statement:
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