主頁 > 知識庫 > PHP實現(xiàn)微信提現(xiàn)功能

PHP實現(xiàn)微信提現(xiàn)功能

熱門標簽:宿州正規(guī)外呼系統(tǒng)軟件 代理打電話機器人 神龍斗士電話機器人 電信外呼系統(tǒng)多少錢一個月 萍鄉(xiāng)商鋪地圖標注 企業(yè)400電話辦理多少費用 桂陽公司如何做地圖標注 太原400電話申請流程 合肥企業(yè)外呼系統(tǒng)線路

本文實例為大家分享了PHP實現(xiàn)微信提現(xiàn)功能的具體代碼,供大家參考,具體內容如下

一、實現(xiàn)功能   

這幾天在小程序里要實現(xiàn)用戶從系統(tǒng)中提現(xiàn)到零錢的功能,查了一下文檔可以使用 企業(yè)付款到用戶零錢 來實現(xiàn); 

官方文檔

注意事項:商戶打款時是從商戶可用余額中減錢,所以確保商戶可用余額充足,同時注意官方文檔中的付款規(guī)則;

二、PHP實現(xiàn)

//封裝提現(xiàn)方法
 function tixian($money){
    $appid = "################";//商戶賬號appid
    $secret = "##########";//api密碼
    $mch_id = "#######";//商戶號
    $mch_no = "#######";
    $openid="123456789";//授權用戶openid
       
    $arr = array();
    $arr['mch_appid'] = $appid;
    $arr['mchid'] = $mch_id;
    $arr['nonce_str'] = ugv::randomid(20);//隨機字符串,不長于32位
    $arr['partner_trade_no'] = '1298016501' . date("Ymd") . rand(10000, 90000) . rand(10000, 90000);//商戶訂單號
    $arr['openid'] = $openid;
    $arr['check_name'] = 'NO_CHECK';//是否驗證用戶真實姓名,這里不驗證
    $arr['amount'] = $money;//付款金額,單位為分
    $desc = "###提現(xiàn)";
    $arr['desc'] = $desc;//描述信息
    $arr['spbill_create_ip'] = '192.168.0.1';//獲取服務器的ip
    //封裝的關于簽名的算法
    $notify = new Notify_pub();
    $notify->weixin_app_config = array();
    $notify->weixin_app_config['KEY'] = $mch_no;

    $arr['sign'] = $notify->getSign($arr);//簽名

    $var = $notify->arrayToXml($arr);
    $xml = $this->curl_post_ssl('https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers', $var, 30, array(), 1);
    $rdata = simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);
    $return_code = (string)$rdata->return_code;
    $result_code = (string)$rdata->result_code;
    $return_code = trim(strtoupper($return_code));
    $result_code = trim(strtoupper($result_code));

    if ($return_code == 'SUCCESS'  $result_code == 'SUCCESS') {
      $isrr = array(
        'con'=>'ok',
        'error' => 0,
      );
    } else {
      $returnmsg = (string)$rdata->return_msg;
      $isrr = array(
        'error' => 1,
        'errmsg' => $returnmsg,
      );

    }
    return json_encode($isrr);
} 

//上個方法中用到的curl_post_ssl()
function curl_post_ssl($url, $vars, $second = 30, $aHeader = array())
  {
    $isdir = "/cert/";//證書位置

    $ch = curl_init();//初始化curl

    curl_setopt($ch, CURLOPT_TIMEOUT, $second);//設置執(zhí)行最長秒數(shù)
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//要求結果為字符串且輸出到屏幕上
    curl_setopt($ch, CURLOPT_URL, $url);//抓取指定網(wǎng)頁
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);// 終止從服務端進行驗證
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);//
    curl_setopt($ch, CURLOPT_SSLCERTTYPE, 'PEM');//證書類型
    curl_setopt($ch, CURLOPT_SSLCERT, $isdir . 'apiclient_cert.pem');//證書位置
    curl_setopt($ch, CURLOPT_SSLKEYTYPE, 'PEM');//CURLOPT_SSLKEY中規(guī)定的私鑰的加密類型
    curl_setopt($ch, CURLOPT_SSLKEY, $isdir . 'apiclient_key.pem');//證書位置
    curl_setopt($ch, CURLOPT_CAINFO, 'PEM');
    curl_setopt($ch, CURLOPT_CAINFO, $isdir . 'rootca.pem');
    if (count($aHeader) >= 1) {
      curl_setopt($ch, CURLOPT_HTTPHEADER, $aHeader);//設置頭部
    }
    curl_setopt($ch, CURLOPT_POST, 1);//post提交方式
    curl_setopt($ch, CURLOPT_POSTFIELDS, $vars);//全部數(shù)據(jù)使用HTTP協(xié)議中的"POST"操作來發(fā)送

    $data = curl_exec($ch);//執(zhí)行回話
    if ($data) {
      curl_close($ch);
      return $data;
    } else {
      $error = curl_errno($ch);
      echo "call faild, errorCode:$error\n";
      curl_close($ch);
      return false;
    }
}

三、補充

關于具體簽名算法,可參考微信官方文檔;

簡單示范簽名算法:

//將要發(fā)送的數(shù)據(jù)整理為$data

ksort($data);//排序
//使用URL鍵值對的格式(即key1=value1key2=value2…)拼接成字符串
$str='';
foreach($data as $k=>$v) {
  $str.=$k.'='.$v.'';
}
//拼接API密鑰
$str.='key='.$secrect;
$data['sign']=md5($str);//加密

將數(shù)組轉換成xml格式(簡單方法):

//遍歷數(shù)組方法
function arraytoxml($data){
  $str='xml>';
  foreach($data as $k=>$v) {
    $str.=''.$k.'>'.$v.'/'.$k.'>';
  }
  $str.='/xml>';
  return $str;
}

將xml格式轉換為數(shù)組:

function xmltoarray($xml) { 
   //禁止引用外部xml實體 
  libxml_disable_entity_loader(true); 
  $xmlstring = simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA); 
  $val = json_decode(json_encode($xmlstring),true); 
  return $val;
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • php實現(xiàn)微信支付之退款功能
  • PHP實現(xiàn)微信申請退款流程實例代碼
  • PHP實現(xiàn)微信支付(jsapi支付)和退款(無需集成支付SDK)流程教程詳解
  • PHP開發(fā)實現(xiàn)微信退款功能示例
  • 微信企業(yè)轉賬之入口類分裝php代碼
  • PHP實現(xiàn)微信對賬單處理
  • php提取微信賬單的有效信息
  • php實現(xiàn)微信公眾號企業(yè)轉賬功能
  • PHP APP微信提現(xiàn)接口代碼
  • PHP實現(xiàn)微信申請退款功能

標簽:衡陽 綏化 太原 白銀 崇左 鄂州 辛集 廊坊

巨人網(wǎng)絡通訊聲明:本文標題《PHP實現(xiàn)微信提現(xiàn)功能》,本文關鍵詞  PHP,實現(xiàn),微信,提現(xiàn),功能,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《PHP實現(xiàn)微信提現(xiàn)功能》相關的同類信息!
  • 本頁收集關于PHP實現(xiàn)微信提現(xiàn)功能的相關信息資訊供網(wǎng)民參考!
  • 推薦文章