php實(shí)現(xiàn)微信發(fā)紅包
本文實(shí)例講述了php實(shí)現(xiàn)的微信紅包算法。分享給大家供大家參考。具體如下:
具體代碼:
<?php /** * 微信紅包的類 * */ CLASS WXHongBao { private $mch_id = "111111";//商戶ID寫(xiě)死 private $wxappid = "22222222";//微信公眾號(hào),寫(xiě)死 private $client_ip = "119.29.80.114"; //調(diào)用紅包接口的主機(jī)的IP,服務(wù)端IP,寫(xiě)死,即腳本文件所在的IP private $apikey = "33333333";//pay的秘鑰值 private $total_num = 1;//發(fā)放人數(shù)。固定值1,不可修改 private $nick_name = "微信產(chǎn)品中心公眾號(hào)"; //紅包商戶名稱 private $send_name = "微信產(chǎn)品中心公眾號(hào)";//紅包派發(fā)者名稱 private $wishing = "祝福語(yǔ)"; // private $act_name = "紅包活動(dòng)"; //活動(dòng)名稱 private $remark = "活動(dòng)備注"; private $nonce_str = ""; private $mch_billno = ""; private $re_openid = "";//接收方的openID private $total_amount = 1 ;//紅包金額,單位 分 private $min_value = 1;//最小金額 private $max_value = 1; //根據(jù)接口要求,上述3值必須一致 private $sign = ""; //簽名在send時(shí)生成 private $amt_type; //分裂紅包參數(shù),在sendgroup中進(jìn)行定義,是常量 ALL_RAND //證書(shū),在構(gòu)造函數(shù)中定義,注意! private $apiclient_cert; //= getcwd()."/apiclient_cert.pem"; private $apiclient_key;// = getcwd()."/apiclient_key.pem"; //分享參數(shù) private $isShare = false; //有用?似乎是無(wú)用參數(shù),全部都不是必選和互相依賴的參數(shù) private $share_content = ""; private $share_url =""; private $share_imgurl = ""; private $wxhb_inited; private $api_hb_group = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendgroupredpack";//裂變紅包 private $api_hb_single = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack"; private $error = "ok"; //init /** * WXHongBao::__construct() * 步驟 * new(openid,amount) * setnickname * setsend_name * setwishing * setact_name * setremark * send() * @return void */ function __construct(){ //好像沒(méi)有什么需要構(gòu)造函數(shù)做的 $this->wxhb_inited = false; $this->apiclient_cert = getcwd()."/apiclient_cert.pem"; $this->apiclient_key = getcwd()."/apiclient_key.pem"; } public function err(){ return $this->error; } public function error(){ return $this->err(); } /** * WXHongBao::newhb() * 構(gòu)造新紅包 * @param mixed $toOpenId * @param mixed $amount 金額分 * @return void */ public function newhb($toOpenId,$amount){ if(!is_numeric($amount)){ $this->error = "金額參數(shù)錯(cuò)誤"; return; }elseif($amount<100){ $this->error = "金額太小"; return; }elseif($amount>20000){ $this->error = "金額太大"; return; } $this->gen_nonce_str();//構(gòu)造隨機(jī)字串 $this->gen_mch_billno();//構(gòu)造訂單號(hào) $this->setOpenId($toOpenId); $this->setAmount($amount); $this->wxhb_inited = true; //標(biāo)記微信紅包已經(jīng)初始化完畢可以發(fā)送 //每次new 都要將分享的內(nèi)容給清空掉,否則會(huì)出現(xiàn)殘余被引用 $this->share_content= ""; $this->share_imgurl = ""; $this->share_url = ""; } /** * WXHongBao::send() * 發(fā)出紅包 * 構(gòu)造簽名 * 注意第二參數(shù),單發(fā)時(shí)不要改動(dòng)! * @return boolean $success */ public function send($url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack",$total_num = 1){ if(!$this->wxhb_inited){ $this->error .= "(紅包未準(zhǔn)備好)"; return false; //未初始化完成 } $this->total_num = $total_num; $this->gen_Sign(); //生成簽名 //構(gòu)造提交的數(shù)據(jù) $xml = $this->genXMLParam(); //debug file_put_contents("hbxml.txt",$xml); //提交xml,curl //$url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack"; $ch = curl_init(); curl_setopt($ch,CURLOPT_TIMEOUT,10); 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,$this->apiclient_cert); curl_setopt($ch,CURLOPT_SSLKEYTYPE,'PEM'); curl_setopt($ch,CURLOPT_SSLKEY,$this->apiclient_key); /* if( count($aHeader) >= 1 ){ curl_setopt($ch, CURLOPT_HTTPHEADER, $aHeader); } */ curl_setopt($ch,CURLOPT_POST, 1); curl_setopt($ch,CURLOPT_POSTFIELDS,$xml); $data = curl_exec($ch); if($data){ curl_close($ch); $rsxml = simplexml_load_string($data); if($rsxml->return_code == 'SUCCESS' ){ return true; }else{ $this->error = $rsxml->return_msg; return false; } }else{ $this->error = curl_errno($ch); curl_close($ch); return false; } } /** * WXHongBao::sendGroup() * 發(fā)送裂變紅包,參數(shù)為裂變數(shù)量 * @param integer $num 3-20 * @return */ public function sendGroup($num=3){ $this->amt_type = "ALL_RAND";//$amt; 固定值。發(fā)送裂變紅包組文檔指定參數(shù),隨機(jī) return $this->send($this->api_hb_group,$num); } public function getApiSingle(){ return $this->api_hb_single; } public function getApiGroup(){ return $this->api_hb_group; } public function setNickName($nick){ $this->nick_name = $nick; } public function setSendName($name){ $this->send_name = $name; } public function setWishing($wishing){ $this->wishing = $wishing; } /** * WXHongBao::setActName() * 活動(dòng)名稱 * @param mixed $act * @return void */ public function setActName($act){ $this->act_name = $act; } public function setRemark($remark){ $this->remark = $remark; } public function setOpenId($openid){ $this->re_openid = $openid; } /** * WXHongBao::setAmount() * 設(shè)置紅包金額 * 文檔有兩處沖突描述 * 一處指金額 >=1 (分錢(qián)) * 另一處指金額 >=100 < 20000 [1-200元] * 有待測(cè)試驗(yàn)證! * @param mixed $price 單位 分 * @return void */ public function setAmount($price){ $this->total_amount = $price; $this->min_value = $price; $this->max_value = $price; } //以下方法,為設(shè)置分裂紅包時(shí)使用 public function setHBminmax($min,$max){ $this->min_value = $min; $this->max_value = $max; } public function setShare($img="",$url="",$content=""){ //https://mmbiz.qlogo.cn/mmbiz/MS1jaDO92Ep4qNo9eV0rnItptyBrzUhJqT8oxSsCofdxibnNWMJiabaqgLPkDaEJmia6fqTXAXulKBa9NLfxYMwYA/0?wx_fmt=png //http://mp.weixin.qq.com/s?__biz=MzA5Njg4NTk3MA==&mid=206257621&idx=1&sn=56241da30e384e40771065051e4aa6a8#rd $this->share_content = $content; $this->share_imgurl = $img; $this->share_url = $url; } private function gen_nonce_str(){ $this->nonce_str = strtoupper(md5(mt_rand().time())); //確保不重復(fù)而已 } private function gen_Sign(){ unset($param); //其實(shí)應(yīng)該用key重排一次 right? $param["act_name"]=$this->act_name;// if($this->total_num==1){ //這些是裂變紅包用不上的參數(shù),會(huì)導(dǎo)致簽名錯(cuò)誤 $param["client_ip"]=$this->client_ip; $param["max_value"]=$this->max_value; $param["min_value"]=$this->min_value; $param["nick_name"]=$this->nick_name; } $param["mch_billno"] = $this->mch_billno; // $param["mch_id"]=$this->mch_id;// $param["nonce_str"]=$this->nonce_str; // $param["re_openid"]=$this->re_openid;// $param["remark"]=$this->remark; // $param["send_name"]=$this->send_name;// $param["total_amount"]=$this->total_amount;// $param["total_num"]=$this->total_num; // $param["wishing"]=$this->wishing;// $param["wxappid"]=$this->wxappid;// if($this->share_content) $param["share_content"] = $this->share_content; if($this->share_imgurl) $param["share_imgurl"] = $this->share_imgurl; if($this->share_url) $param["share_url"] = $this->share_url; if($this->amt_type) $param["amt_type"] = $this->amt_type; // ksort($param); //按照鍵名排序...艸,上面排了我好久 //$sign_raw = http_build_query($param)."&key=".$this->apikey; $sign_raw = ""; foreach($param as $k => $v){ $sign_raw .= $k."=".$v."&"; } $sign_raw .= "key=".$this->apikey; //file_put_contents("sign.raw",$sign_raw);//debug $this->sign = strtoupper(md5($sign_raw)); } /** * WXHongBao::genXMLParam() * 生成post的參數(shù)xml數(shù)據(jù)包 * 注意生成之前各項(xiàng)值要生成,尤其是Sign * @return $xml */ public function genXMLParam(){ $xml = "<xml> <sign>".$this->sign."</sign> <mch_billno>".$this->mch_billno."</mch_billno> <mch_id>".$this->mch_id."</mch_id> <wxappid>".$this->wxappid."</wxappid> <nick_name><![CDATA[".$this->nick_name."]]></nick_name> <send_name><![CDATA[".$this->send_name."]]></send_name> <re_openid>".$this->re_openid."</re_openid> <total_amount>".$this->total_amount."</total_amount> <min_value>".$this->min_value."</min_value> <max_value>".$this->max_value."</max_value> <total_num>".$this->total_num."</total_num> <wishing><![CDATA[".$this->wishing."]]></wishing> <client_ip><![CDATA[".$this->client_ip."]]></client_ip> <act_name><![CDATA[".$this->act_name."]]></act_name> <remark><![CDATA[".$this->remark."]]></remark> <nonce_str>".$this->nonce_str."</nonce_str> "; if($this->share_content) $xml .= "<share_content><![CDATA[".$this->share_content."]]></share_content> "; if($this->share_imgurl) $xml .= "<share_imgurl><![CDATA[".$this->share_imgurl."]]></share_imgurl> "; if($this->share_url) $xml .= "<share_url><![CDATA[".$this->share_url."]]></share_url> "; if($this->amt_type) $xml .= "<amt_type><![CDATA[".$this->amt_type."]]></amt_type> "; $xml .="</xml>"; return $xml; } /** * WXHongBao::gen_mch_billno() * 商戶訂單號(hào)(每個(gè)訂單號(hào)必須唯一) 組成: mch_id+yyyymmdd+10位一天內(nèi)不能重復(fù)的數(shù)字。 接口根據(jù)商戶訂單號(hào)支持重入, 如出現(xiàn)超時(shí)可再調(diào)用。 * @return void */ private function gen_mch_billno(){ //生成一個(gè)長(zhǎng)度10,的阿拉伯?dāng)?shù)字隨機(jī)字符串 $rnd_num = array('0','1','2','3','4','5','6','7','8','9'); $rndstr = ""; while(strlen($rndstr)<10){ $rndstr .= $rnd_num[array_rand($rnd_num)]; } $this->mch_billno = $this->mch_id.date("Ymd").$rndstr; } } ?> 然后實(shí)例化class. $toOpenId = 'asdasdasd'; //接收紅包的用戶的微信OpenId $hb = new WXHongBao(); $hb->newhb($toOpenId,1000); //新建一個(gè)10元的紅包,第二參數(shù)單位是 分,注意取值范圍 1-200元 //以下若干項(xiàng)可選操作,不指定則使用class腳本頂部的預(yù)設(shè)值 $hb->setNickName("土豪有限公司"); $hb->setSendName("土豪"); $hb->setWishing("恭喜發(fā)財(cái)"); $hb->setActName("發(fā)錢(qián)活動(dòng)"); $hb->setRemark("任性一把"); //發(fā)送紅包 if(!$hb->send()){ //發(fā)送錯(cuò)誤 echo $hb->err(); }else{ echo "紅包發(fā)送成功"; }
希望本文所述對(duì)大家的php程序設(shè)計(jì)有所幫助。
相關(guān)文章
Symfony實(shí)現(xiàn)行為和模板中取得request參數(shù)的方法
這篇文章主要介紹了Symfony實(shí)現(xiàn)行為和模板中取得request參數(shù)的方法,實(shí)例分析了Symfony針對(duì)行為和方法中參數(shù)獲取的技巧,需要的朋友可以參考下2016-03-03WordPress中制作導(dǎo)航菜單的PHP核心方法講解
這篇文章主要介紹了WordPress中制作導(dǎo)航菜單的PHP核心方法,即wp_get_nav_menu的相關(guān)參數(shù)的作用和用法,需要的朋友可以參考下2015-12-12使用Discuz關(guān)鍵詞服務(wù)器實(shí)現(xiàn)PHP中文分詞
這篇文章主要介紹了使用Discuz關(guān)鍵詞服務(wù)器實(shí)現(xiàn)PHP中文分詞的方法以及代碼實(shí)例,需要的朋友可以參考下2014-03-03CI框架學(xué)習(xí)筆記(一) - 環(huán)境安裝、基本術(shù)語(yǔ)和框架流程
本文是CI框架學(xué)習(xí)筆記的第一篇,主要介紹了CI框架的環(huán)境安裝,基本術(shù)語(yǔ)以及框架流程,非常的詳細(xì),有需要的朋友可以參考下2014-10-10thinkphp實(shí)現(xiàn)發(fā)送郵件密碼找回功能實(shí)例
這篇文章主要介紹了thinkphp實(shí)現(xiàn)發(fā)送郵件密碼找回功能的方法,以實(shí)例形式詳細(xì)講述了配置文件與功能代碼的實(shí)現(xiàn)方法,是非常實(shí)用的技巧,需要的朋友可以參考下2014-12-12