您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“PHP微信公眾號(hào)如何添加微信紅包功能”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“PHP微信公眾號(hào)如何添加微信紅包功能”這篇文章吧。
一.需求:
粉絲通過(guò)在客戶的公眾平臺(tái)點(diǎn)擊他們公司的訂單,然后給這個(gè)訂單返現(xiàn)五元,發(fā)到訂單的這個(gè)微信號(hào)上。
二.開(kāi)發(fā)想法:
1:先拿到關(guān)注這個(gè)粉絲的openid,openid是關(guān)注某個(gè)公眾號(hào)的微信標(biāo)識(shí),這樣就可以定位到這個(gè)人是訂單的操作者了。
2:發(fā)送xml數(shù)據(jù)請(qǐng)求微信服務(wù)器。
代碼有兩個(gè)php文件
1.oauth3.php
<?php $code=$_GET['code']; $state=$_GET['state']; $appid='XXXX'; $appsecret='XXXXXXXX';// if (empty($code)) $this->error('授權(quán)失敗'); $token_url='https://api.weixin.qq.com/sns/oauth3/access_token?appid='.$appid'&secret='.$appsecret.'&code='.$code.'&grant_type=authorization_code'; $token=json_decode(file_get_contents($token_url)); if (isset($token->errcode)) { echo '<h2>錯(cuò)誤1</h2>'.$token->errcode; echo '<br/><h3>錯(cuò)誤信息1:</h3>'.$token->errmsg; exit; } session_start(); $_SESSION['openid']= $token->openid; header('location:http://www.XXXXXXX.com/XXXXX/XXXXXX/XXXXXX/hongbao.php');//要跳轉(zhuǎn)的文件路徑 ?>
2.hongbao.php
<?php //XXXXX。。是需要開(kāi)發(fā)者自己填寫(xiě)的內(nèi)容,注意不要泄密 // 從session中獲取到openid; $openid=$_SESSION["openid"]; if(empty($openid)) { header('location:https://open.weixin.qq.com/connect/oauth3/authorize?appid=XXXXXXXX&redirect_uri=http://www.XXXXXXX.com/oauth3.php&respose_type=code&scope=snsapi_base&state=XXXX&connect_redirect=1#wechat_redirect'); } } // 關(guān)鍵的函數(shù) public function weixin_red_packet(){ // 請(qǐng)求參數(shù) // 隨機(jī)字符串 $data['nonce_str']=$this->get_unique_value(); //商戶號(hào),輸入你的商戶號(hào) $data['mch_id']="XXXXXXX"; //商戶訂單號(hào),可以按要求自己組合28位的商戶訂單號(hào) $data['mch_billno']=$data['mch_id'].date("ymd")."XXXXXX".rand(1000,9999); //公眾帳號(hào)appid,輸入自己的公眾號(hào)appid $data['wxappid']="XXXXXXX"; //商戶名稱 $data['send_name']="XXXXX"; //用戶openid,輸入待發(fā)紅包的用戶openid session_start(); $data['re_openid']=$_SESSION["openid"]; //付款金額 $data['total_amount']="XXXX"; //紅包發(fā)放總?cè)藬?shù) $data['total_num']="XXXX"; //紅包祝福語(yǔ) $data['wishing']="XXXX"; //IP地址 $data['client_ip']=$_SERVER['LOCAL_ADDR']; //活動(dòng)名稱 $data['act_name']="XXXXX"; //備注 $data['remark']="XXXXX"; // 生成簽名 //對(duì)數(shù)據(jù)數(shù)組進(jìn)行處理 //API密鑰,輸入自己的K 微信商戶號(hào)里面的K $appsecret="XXXXXXXXXXXXXX"; // $data=array_filter($data); ksort($data); $str=""; foreach($data as $k=>$v){ $str.=$k."=".$v."&"; } $str.="key=".$appsecret; $data['sign']=strtoupper(MD5($str)); /* 發(fā)紅包操作過(guò)程: 1.將請(qǐng)求數(shù)據(jù)轉(zhuǎn)換成xml 2.發(fā)送請(qǐng)求 3.將請(qǐng)求結(jié)果轉(zhuǎn)換為數(shù)組 4.將請(qǐng)求信息和請(qǐng)求結(jié)果錄入到數(shù)據(jù)庫(kù)中 4.判斷是否通信成功 5.判斷是否轉(zhuǎn)賬成功 */ //發(fā)紅包接口地址 $url="https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack"; //將請(qǐng)求數(shù)據(jù)由數(shù)組轉(zhuǎn)換成xml $xml=$this->arraytoxml($data); //進(jìn)行請(qǐng)求操作 $res=$this->curl($xml,$url); //將請(qǐng)求結(jié)果由xml轉(zhuǎn)換成數(shù)組 $arr=$this->xmltoarray($res); } // 生成32位唯一隨機(jī)字符串 private function get_unique_value(){ $str=uniqid(mt_rand(),1); $str=sha1($str); return md5($str); } // 將數(shù)組轉(zhuǎn)換成xml private function arraytoxml($arr){ $xml="<xml>"; foreach($arr as $k=>$v){ $xml.="<".$k.">".$v."</".$k.">"; } $xml.="</xml>"; return $xml; } // 將xml轉(zhuǎn)換成數(shù)組 private function xmltoarray($xml){ //禁止引用外部xml實(shí)體 libxml_disable_entity_loader(true); $xmlstring=simplexml_load_string($xml,"SimpleXMLElement",LIBXML_NOCDATA); $arr=json_decode(json_encode($xmlstring),true); return $arr; } //進(jìn)行curl操作 private function curl($param="",$url) { $postUrl = $url; $curlPost = $param; //初始化curl $ch = curl_init(); //抓取指定網(wǎng)頁(yè) curl_setopt($ch, CURLOPT_URL,$postUrl); //設(shè)置header curl_setopt($ch, CURLOPT_HEADER, 0); //要求結(jié)果為字符串且輸出到屏幕上 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //post提交方式 curl_setopt($ch, CURLOPT_POST, 1); // 增加 HTTP Header(頭)里的字段 curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost); // 終止從服務(wù)端進(jìn)行驗(yàn)證 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); //證書(shū)放到網(wǎng)站根目錄的cert文件夾底下 curl_setopt($ch,CURLOPT_SSLCERT,dirname(__FILE__).DIRECTORY_SEPARATOR. 'cert'.DIRECTORY_SEPARATOR.'apiclient_cert.pem'); curl_setopt($ch,CURLOPT_SSLKEY,dirname(__FILE__).DIRECTORY_SEPARATOR. 'cert'.DIRECTORY_SEPARATOR.'apiient_key.pem'); curl_setopt($ch,CURLOPT_CAINFO,dirname(__FILE__).DIRECTORY_SEPARATOR. 'cert'.DIRECTORY_SEPARATOR.'rootca.pem'); //運(yùn)行curl $data = curl_exec($ch); //關(guān)閉curl curl_close($ch); return $data; } ?>
以上是“PHP微信公眾號(hào)如何添加微信紅包功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。