首页 > 开发 > PHP > 正文

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

2024-05-04 23:34:49
字体:
来源:转载
供稿:网友

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

bankList.php请在文章末尾下载

 

 
  1. header('Content-type:text/html;charset=utf-8');  
  2. require_once('bankList.php');  
  3. function bankInfo($card,$bankList)  
  4. {  
  5. $card_8 = substr($card, 0, 8);  
  6. if (isset($bankList[$card_8])) {  
  7. echo $bankList[$card_8];  
  8. return;  
  9. }  
  10. $card_6 = substr($card, 0, 6);  
  11. if (isset($bankList[$card_6])) {  
  12. echo $bankList[$card_6];  
  13. return;  
  14. }  
  15. $card_5 = substr($card, 0, 5);  
  16. if (isset($bankList[$card_5])) {  
  17. echo $bankList[$card_5];  
  18. return;  
  19. }  
  20. $card_4 = substr($card, 0, 4);  
  21. if (isset($bankList[$card_4])) {  
  22. echo $bankList[$card_4];  
  23. return;  
  24. }  
  25. echo '该卡号信息暂未录入';  
  26. }  
  27.  
  28. bankInfo('6228481552887309119',$bankList);  

banklist.php下载

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表