久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      PHP怎么校驗(yàn)銀行卡四元素

      校驗(yàn)方法:1、申請(qǐng)銀行卡四元素檢測(cè)接口,獲得接口請(qǐng)求Key;2、調(diào)用接口API發(fā)出請(qǐng)求,處理數(shù)據(jù)并返回結(jié)果;3、用“$content=juheHttpRequest($apiUrl, $paramstring,1);”獲取接口返回內(nèi)容;4、根據(jù)自身業(yè)務(wù)邏輯處理返回內(nèi)容,并打印處理結(jié)果。

      PHP怎么校驗(yàn)銀行卡四元素

      php入門(mén)到就業(yè)線上直播課:進(jìn)入學(xué)習(xí)
      Apipost = Postman + Swagger + Mock + Jmeter 超好用的API調(diào)試工具:點(diǎn)擊使用

      本教程操作環(huán)境:windows7系統(tǒng)、PHP8.1版、DELL G3電腦

      基于PHP的銀行卡四元素校驗(yàn)API接口調(diào)用示例

      前期準(zhǔn)備

      • 申請(qǐng)接口

      銀行卡四元素檢測(cè)接口申請(qǐng)地址:https://www.juhe.cn/docs/api/id/213?s=cpphpcn

      自助申請(qǐng)開(kāi)通短信API,獲得接口請(qǐng)求Key。(目前接口暫只支持企業(yè)類(lèi)用戶(hù)使用)

      PHP請(qǐng)求代碼示例

      /**  * 聚合銀行卡四元素校驗(yàn)API發(fā)起請(qǐng)求-PHP代碼  * 功能:檢測(cè)輸入的姓名、手機(jī)號(hào)碼、身份證號(hào)碼、銀行卡號(hào)是否一致。  */  // 請(qǐng)求的接口URL $apiUrl = 'http://v.juhe.cn/verifybankcard4/query';  // 請(qǐng)求參數(shù) $params = [     'realname' => 'xxx', // 姓名     'idcard' => 'xxx', // 身份證號(hào)碼     'bankcard' => 'xxx', // 銀行卡號(hào)     'mobile' => 'xxx', // 手機(jī)號(hào)碼      'key' => 'xxx', // 接口調(diào)用key,通過(guò)聚合平臺(tái)申請(qǐng)開(kāi)通 ]; $paramsString = http_build_query($params);  // 發(fā)起接口請(qǐng)求 $response = juheHttpRequest($apiUrl, $paramsString, 1);  // 處理接口返回結(jié)果,根據(jù)自身業(yè)務(wù)邏輯修改處理 $paramstring = http_build_query($params); $content = juheHttpRequest($apiUrl, $paramstring, 1); $result = json_decode($content, true); if ($result) {     if ($result['error_code'] == 0) {         // 請(qǐng)求成功,根據(jù)自身業(yè)務(wù)邏輯修改處理         $res = $result['result']['res'];         if ($res == '1') {             // 信息核驗(yàn)一致             echo "信息核驗(yàn)一致";         } else {             // 信息核驗(yàn)不一致             echo "信息核驗(yàn)不一致";         }     } else {         // 請(qǐng)求異常,根據(jù)自身業(yè)務(wù)邏輯修改處理         echo "{$result['error_code']}:{$result['reason']}" . PHP_EOL;     } } else {     //可能網(wǎng)絡(luò)異常等問(wèn)題請(qǐng)求失敗,根據(jù)自身業(yè)務(wù)邏輯修改處理     echo "請(qǐng)求失敗"; }  /**  * 發(fā)起網(wǎng)絡(luò)請(qǐng)求函數(shù)  * @param string $url 請(qǐng)求的URL  * @param bool $params 請(qǐng)求的參數(shù)內(nèi)容  * @param int $ispost 是否POST請(qǐng)求  * @return bool|string 返回內(nèi)容  */ function juheHttpRequest($url, $params = false, $ispost = 0) {     $httpInfo = [];     $ch = curl_init();      curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);     curl_setopt($ch, CURLOPT_USERAGENT, 'JUHE API');     curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 3);     curl_setopt($ch, CURLOPT_TIMEOUT, 12);     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);     if ($ispost) {         curl_setopt($ch, CURLOPT_POST, true);         curl_setopt($ch, CURLOPT_POSTFIELDS, $params);         curl_setopt($ch, CURLOPT_URL, $url);     } else {         if ($params) {             curl_setopt($ch, CURLOPT_URL, $url . '?' . $params);         } else {             curl_setopt($ch, CURLOPT_URL, $url);         }     }     $response = curl_exec($ch);     if ($response === FALSE) {         // echo "cURL Error: ".curl_error($ch);         return false;     }     $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);     $httpInfo = array_merge($httpInfo, curl_getinfo($ch));     curl_close($ch);     return $response; }
      登錄后復(fù)制

      詳細(xì)請(qǐng)求參數(shù)和返回參數(shù)格式說(shuō)明,請(qǐng)參考官方接口文檔:https://www.juhe.cn/docs/api/id/213?s=cpphpcn

      推薦學(xué)習(xí):《PHP視頻教程》

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)