一.實現該功能目的php
這幾天在小程序裏要實現用戶從系統中提現到零錢的功能,查了一下文檔能夠使用 企業付款到用戶零錢 來實現;算法
官方文檔:https://pay.weixin.qq.com/wiki/doc/api/tools/mch_pay.php?chapter=14_1;json
注意事項:商戶打款時是從商戶可用餘額中減錢,因此確保商戶可用餘額充足,同時注意官方文檔中的付款規則;小程序
二.PHP實現api
//封裝提現方法 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 = "###提現"; $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);//設置執行最長秒數 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//要求結果爲字符串且輸出到屏幕上 curl_setopt($ch, CURLOPT_URL, $url);//抓取指定網頁 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中規定的私鑰的加密類型 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);//所有數據使用HTTP協議中的"POST"操做來發送 $data = curl_exec($ch);//執行回話 if ($data) { curl_close($ch); return $data; } else { $error = curl_errno($ch); echo "call faild, errorCode:$error\n"; curl_close($ch); return false; } }
三.補充數組
關於具體簽名算法,可參考微信官方文檔;服務器
簡單示範簽名算法:微信
//將要發送的數據整理爲$data ksort($data);//排序 //使用URL鍵值對的格式(即key1=value1&key2=value2…)拼接成字符串 $str=''; foreach($data as $k=>$v) { $str.=$k.'='.$v.'&'; } //拼接API密鑰 $str.='key='.$secrect; $data['sign']=md5($str);//加密
將數組轉換成xml格式(簡單方法):app
//遍歷數組方法 function arraytoxml($data){ $str='<xml>'; foreach($data as $k=>$v) { $str.='<'.$k.'>'.$v.'</'.$k.'>'; } $str.='</xml>'; return $str; }
將xml格式轉換爲數組:dom
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; }