Home  >  Article  >  php教程  >  通过银行卡号取得银行名字

通过银行卡号取得银行名字

WBOY
WBOYOriginal
2016-06-06 19:38:541642browse

无详细内容 无 ?php/** * * bank.php文件 * * User: Administrator * DateTime: 2014/12/31 10:01 */header('Content-type:text/html;charset=utf-8');require_once('bankList.php');function bankInfo($card,$bankList){//$card = '6222021001116245702';//

<?php
/**
 *
 * bank.php文件
 *
 * User: Administrator
 * DateTime: 2014/12/31 10:01
 */
header('Content-type:text/html;charset=utf-8');
require_once('bankList.php');
function bankInfo($card,$bankList)
{
//		$card = '6222021001116245702';
//    $card = '6228481552887309119';
//    $bankList = Config::get('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);
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