この記事では、WeChat Pay アプリ (2016.10.11) の PHP (7.0) バックグラウンド支払いとコールバック インターフェイスを紹介します。フレームワークは Thinkphp5.0 です。お役に立てれば幸いです。
アカウントの各種パラメータ
注文情報
prepay_idのリクエスト
*APPデータ処理に戻る
WeChatコールバック
注文ステータスを変更する
アカウントのさまざまなパラメータは、WeChat がアプリ決済を申請すると、アカウントのメールボックスにメールが送信されます。申請時に WeChat 支払いによって割り当てられる、対応する販売者番号 (MCHID)、APPID および APPSECRET が表示されます。アプリの場合、ユーザーが WeChat のバックエンドでアクセス許可を設定する必要があります。これは非常に重要です。
/** * 格式化参数格式化成url参数 */ public function ToUrlParams() { $buff = ""; foreach ($this->values as $k => $v) { if($k != "sign" && $v != "" && !is_array($v)){ $buff .= $k . "=" . $v . "&"; } } $buff = trim($buff, "&"); return $buff; }
(後でのみ必要 , $param = $this->request('パラメータ名')) (それだけです); その後、注文情報を事前に保存します。 .
$input = new \app\wxpay\WxPayUnifiedOrder();//这里引用微信的统一下单接口 $input->SetBody($data['gname']['g_name']);//商品或支付单简要描述 $input->SetAttach($data['gname']['g_name']);//置附加数据 $input->SetOut_trade_no($order_sn); // 商户订单号 $input->SetTotal_fee(intval($data['data']['order_price']*100)); $input->SetTime_start(date("YmdHis"));//订单生成时间 $input->SetTime_expire(date("YmdHis", time() + 600));//订单失效时间 $input->SetGoods_tag($data['gname']['g_name']); //商品标记 $input->SetNotify_url("http://www.weixin.qq.com/wxpay/notify.php"); // 支付成功后的回调地址, $input->SetTrade_type("APP"); $order = \app\wxpay\WxPayApi::unifiedOrder($input);return $order['prepay_id'];
https://pay.weixin.qq .com/wiki/doc/api/app/app.php?chapter=9_1
$info = array(); //账号的信息一般都放在配置文件里面,用到的地方也很多 $info['appid'] = config('APP_APPID'); $info['partnerid'] = config('APP_MCHID'); $info['package'] = config('APP_PACKAGE'); $info['noncestr'] = $this->random_number();//生成随机数,下面有生成实例,统一下单接口需要 $info['timestamp'] = time(); $info['prepayid'] = $prepay_id; $info['sign'] = self::_makeSign($info);//生成签名return $info;
乱数インスタンスを生成します
//生成随机数 public function random_number($len=21,$format='ALL' ){ $is_abc = $is_numer = 0; $password = $tmp =''; switch($format){ case 'ALL': $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; break; case 'CHAR': $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; break; case 'NUMBER': $chars='0123456789'; break; default : $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; break; } // www.jb51.net mt_srand((double)microtime()*1000000*getmypid()); while(strlen($password)<$len){ $tmp =substr($chars,(mt_rand()%strlen($chars)),1); if(($is_numer <> 1 && is_numeric($tmp) && $tmp >0 )|| $format == 'CHAR'){ $is_numer = 1; } if(($is_abc <> 1 && preg_match('/[a-zA-Z]/',$tmp)) || $format == 'NUMBER'){ $is_abc = 1; } $password.= $tmp; } if($is_numer <> 1 || $is_abc <> 1 || empty($password) ){ $password = $this->random_number($len,$format); } return $password; }
http://mch.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=11_1
実際、このページのメインコードはわずか2行です
$notify = new PayNotifyCallBack(); $notify->Handle(false);
final public function Handle($needSign = true) { $msg = "OK"; //当返回false的时候,表示notify中调用NotifyCallBack回调失败获取签名校验失败,此时直接回复失败 $result = WxpayApi::notify(array($this, 'NotifyCallBack'), $msg); if($result == false){ $this->SetReturn_code("FAIL"); $this->SetReturn_msg($msg); $this->ReplyNotify(false); return; } else { //该分支在成功回调到NotifyCallBack方法,处理完成之后流程 $this->SetReturn_code("SUCCESS"); $this->SetReturn_msg("OK"); } $this->ReplyNotify($needSign); }
[php] view plain copy
$result = WxpayApi::notify(array($this, 'NotifyCallBack'), $msg);
public static function notify($callback, &$msg) { //获取通知的数据 $xml = $GLOBALS['HTTP_RAW_POST_DATA']; //如果返回成功则验证签名 try { $result = WxPayResults::Init($xml); } catch (WxPayException $e){ $msg = $e->errorMessage(); return false; } return call_user_func($callback, $result); }
[php] view plain copy
return call_user_func($callback, $result);
NotifyProcess() は問題がないと判断し、情報
[php] view plain copy
$this->SetReturn_code("SUCCESS"); $this->SetReturn_msg("OK");
を設定し、最後に this->ReplyNotify 関数を呼び出します。 (this−>ReplyNotify(needSign); 成功の結果をエコーする
関数 ReplyNotify は 1 つのコードを変更する必要があります:
[php] view plain copy
final private function ReplyNotify($needSign = true) { //如果需要签名 if($needSign == true && $this->GetReturn_code($return_code) == "SUCCESS") { $this->SetSign(); } WxpayApi::replyNotify($this->ToXml()); }
[php] view plain copy
$this->GetReturn_code($return_code) == "SUCCESS")
は
に変更できます[php] view plain copy
$this->GetReturn_code() == "SUCCESS")
次に、返された情報に基づいて注文ステータスを変更します。主なことは、notify.php に新しいメソッド
//修改订单状态 public function updateState($data){ if($data){ $order_sn = $data['out_trade_no'];\ $data = array(); $data['order_id'] = $order_id; //修改订单状态(用curlpost方法请求至thinkphp目录下的Controller里面控制器里面的方法,修改状态) $url = 'www.test.com'; header('content-type:text/html;charset=utf8'); $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $data); $result = curl_exec($curl); curl_close($curl); if($result == 'success'){ return true; }else{ return false; } } }
を追加します。
$notify = new PayNotifyCallBack(); $notify->Handle(false);
//接受参数,修改状态 $xml = file_get_contents("php://input"); $data = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true); $notify->updateState($data);
相关推荐:
以上がWeChat Paymentアプリのphpバックグラウンドインターフェースの詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。