国产精品一区二区三区……-大杳蕉伊人欧美一本遒在饯-日本不卡一区免费在线观看-国产亚洲欧美中文字幕

400-800-9385
網(wǎng)站建設(shè)資訊詳細(xì)

php實(shí)現(xiàn)微信中的企業(yè)付款到零錢的完整教程

發(fā)表日期:2018-04-16 09:29:24   作者來源:方維網(wǎng)絡(luò)   瀏覽:7918   標(biāo)簽:微信企業(yè)付款    
如果需要轉(zhuǎn)賬到用戶的零錢里,需要先獲取用戶的open_id,也就是在公眾號里登錄過并保存的open_id,然后就可以實(shí)現(xiàn)企業(yè)付款到零錢的功能了,以下是代碼詳解:
 
   public function index(){
   $transfer['payment_id'] = '201803221552123458';//訂單號,可以自定義,但不能重復(fù)使用
   $transfer['open_id'] = session('login_weixin');//用戶的open_id
   $transfer['real_name'] ='張三';//用戶的真實(shí)姓名
   $transfer['amount'] = 0.3;//要付款的金額;
   $this->dotransfer($transfer);//調(diào)用接口
   }
 
  /*
   * 付款給用戶的接口(直接調(diào)用即可完成付款)
   * */
 
    public function dotransfer($transfer,&$msg=''){
        $url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers";
        $parameters = array(
            'mch_appid' => C('APPID'),//綁定支付的APPID
            'mchid' => C('MCHID'),//商戶號
            'nonce_str' => $this->create_noncestr(32), //生成32位的隨機(jī)字符串,見圖1
            'partner_trade_no' => $transfer['payment_id'],  //商戶訂單號,不能重復(fù)使用
            'openid' => $transfer['open_id'],//用戶的open_id
            'check_name' => 'OPTION_CHECK',//是否檢查姓名
            're_user_name' => $transfer['real_name'],  //真實(shí)姓名
            'amount' => bcmul($transfer['amount'],100,0),   //企業(yè)付款金額,單位為分  最低1元
            'desc' => '分銷提現(xiàn)',//備注
            'spbill_create_ip' => strval($_SERVER['SERVER_ADDR']),//服務(wù)器IP
        );
        $parameters['sign'] = $this->getSign($parameters, C('KEY'));//getSign函數(shù)見圖2,C('KEY'):商戶支付密鑰
        $xml = $this->arrayToXml($parameters);//函數(shù)見圖3
        $response = $this->postXmlCurl($xml, $url,true);//函數(shù)見圖4
        $result = $this->xmlToArray($response);//函數(shù)見圖片5
        if($result['return_code']=='SUCCESS'){
            if($result['result_code']=='SUCCESS'){
                                     $this->success($transfer['payment_id'].'=payment_id  付款成功');
                return true;
            }else{
                 $this->error($result['err_code_des'].' 付款失敗');
                return false;
            }
        }else{
                             $this->error('付款失敗,微信接口出現(xiàn)異常');
            return false;
        }
}
 
 
圖1
企業(yè)付款php代碼1


圖2
微信企業(yè)付款php代碼2



圖3
微信企業(yè)付款php代碼3



圖4
微信企業(yè)付款php代碼4



圖5
微信企業(yè)付款php代碼5



圖6
微信企業(yè)付款php代碼6

作者:方維網(wǎng)絡(luò)陳應(yīng)信

方維網(wǎng)絡(luò)致力于為客戶定制互聯(lián)網(wǎng)解決方案,可以根據(jù)客戶需求定制系統(tǒng)功能,包括網(wǎng)站、小程序、APP等。
 
如沒特殊注明,文章均為方維網(wǎng)絡(luò)原創(chuàng),轉(zhuǎn)載請注明來自http://pdcharm.com/news/4256.html
京山县| 安达市| 宝清县| 陇南市| 攀枝花市| 图木舒克市| 玉屏| 韶山市| 汶川县| 新巴尔虎左旗| 景谷| 乐亭县| 四子王旗| 招远市| 洪湖市| 屏南县| 老河口市| 云阳县| 兴城市| 三河市| 银川市| 叶城县| 仙桃市| 西乌| 汉阴县| 临湘市| 金秀| 宜都市| 易门县| 成武县| 朝阳市| 濮阳县| 岐山县| 东光县| 邓州市| 雅江县| 任丘市| 尚志市| 汉寿县| 通海县| 凯里市|