PHP開発の微信H 5支払い

8828 ワード

最近、业务に必要なため、微信H 5の支払いをドッキングしましたが、微信の支払いはこの既成のdemoには使えないので、自分で正直に开発ドキュメントと照らし合わせて书かなければなりません.しかし、これは接触したばかりの子供靴にとって、穴がどれだけ少ないかはまだあるので、自分の経験を分かち合いたいと思っています.結局、既製のものはどれだけ使いやすいですか.はい、公式ドキュメントのセットは多くありません.詳細は公式ドキュメントを参照してください.ここで、私は主に3つのファイルに分けました:WxPay.Config.php(支払プロファイル)、Weixin.class.php(支払いクラス)およびPayMetController.class.php(支払いファイル).
まず、WxPay.Config.phpプロファイルには、主に事業者appId、事業者番号、事業者key、非同期コールバックURL、支払いシーン情報が含まれています.以下のようにします.
class WxPayConfig
{
    public static $appid = '        appid';
    public static $mchid = '          ';
    public static $key = '           key';
    public static $notify_url = '              URL';
    public static $scene_info = '{"h5_info":{"type":"Wap","wap_url":"     H5  H5 URL","wap_name":"  "}}'; 
}

そして、パッケージ化する.class.php支払いクラス、主に統一注文Apiを呼び出して、ここではあまり言わないで、直接コードに行きます:
 
                       $appid 
                       $attach 
                       $body 
                       $mch_id 
                       $nonce_str 
                       $notify_url 
                       $out_trade_no 
                       $spbill_create_ip 
                       $total_fee 
                       $trade_type
                       $scene_info
                       $sign 
                   ";
                   //6. POST       ,            
        $dataxml = httpRequest($url,'POST',$post_data);
        $objectxml = (array)simplexml_load_string($dataxml, 'SimpleXMLElement', LIBXML_NOCDATA); //      XML     
        return $objectxml;
    }
}

最後にPayMentController.class.php支払いファイルは、支払いファイルがフロントエンドから支払いを開始する要求を受信して処理する後、Weixinを呼び出す.class.phpはクラスを支払い、結果を受け入れた後、フロントエンドに戻ります(ここでは、インタフェース検証などの一連のコードロジックが削除されています):
public function getPay(){
         //1.       
         include_once "plugins/Payment/weixin/Weixin.class.php";
         $payment = new \Weixin();
         $order_id = I('order_id');
         //2.        
         if (!empty($order_id)){
                   //3.    id        
                   $order = M('Order')->where(array('id'=>$order_id))->find();
                   if ($order){//    
                            //4.            ,                  
                            if ($order['pay_status'] == '1'){
                                     exit(json_encode(array('status'=>'205','msg'=>'      ,      !')));
                            }
                            $bodys = '  :'.$order['order_sn'] . '  ';
                            //5.                  
                            $result = $payment->getCode($order,$bodys);
                            //6. return_code result_code  SUCCESS,      ,       
                            if($result['return_code'] == 'SUCCESS'){
                                     if($result['result_code'] == 'SUCCESS'){
                                               exit(json_encode(array('status'=>'0','msg'=>'    ,   !','result'=>$result['mweb_url'])));
                                     }elseif($result['result_code'] == 'FAIL'){
                                               exit(json_encode(array('status'=>'-201','msg'=>$result['err_code_des'])));
                                     }
                            }else{
               exit(json_encode(array('status'=>'-1','msg'=>'    ,     !')));
                                    }
                   }else{
                            //  :     
                            exit(json_encode(array('status'=>'-200','msg'=>'     ,       !')));
                   }
         }else{
                   //  :    
                   exit(json_encode(array('status'=>'-204','msg'=>'    ,   !')));
         }
}

フロントエンドは、支払いURLを受信した後に実行すると、微信支払いを起動することができる.
附一:ユーザ端末装置ipの取得方法
    function getIP(){           
        if (getenv("HTTP_CLIENT_IP"))
             $ip = getenv("HTTP_CLIENT_IP");
        else if(getenv("HTTP_X_FORWARDED_FOR"))
                $ip = getenv("HTTP_X_FORWARDED_FOR");
        else if(getenv("REMOTE_ADDR"))
             $ip = getenv("REMOTE_ADDR");
        else $ip = "Unknow";
        return $ip;
}

附二:CURL要求方法
    /**
     * CURL  
     * @param $url   url  
     * @param $method      get post
     * @param null $postfields post    
     * @param array $headers   header  
     * @param bool|false $debug         false
     * @return mixed
     */
    function httpRequest($url, $method, $postfields = null, $headers = array(), $debug = false) {
        $method = strtoupper($method);
        $ci = curl_init();
        /* Curl settings */
        curl_setopt($ci, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
        curl_setopt($ci, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0");
        curl_setopt($ci, CURLOPT_CONNECTTIMEOUT, 60); /*            ,     0,      */
        curl_setopt($ci, CURLOPT_TIMEOUT, 7); /*   cURL          */
        curl_setopt($ci, CURLOPT_RETURNTRANSFER, true);
        switch ($method) {
            case "POST":
                curl_setopt($ci, CURLOPT_POST, true);
                if (!empty($postfields)) {
                    $tmpdatastr = is_array($postfields) ? http_build_query($postfields) : $postfields;
                    curl_setopt($ci, CURLOPT_POSTFIELDS, $tmpdatastr);
                }
                break;
            default:
                curl_setopt($ci, CURLOPT_CUSTOMREQUEST, $method); /* //       */
                break;
        }
        $ssl = preg_match('/^https:\/\//i',$url) ? TRUE : FALSE;
        curl_setopt($ci, CURLOPT_URL, $url);
        if($ssl){
            curl_setopt($ci, CURLOPT_SSL_VERIFYPEER, FALSE); // https         hosts
            curl_setopt($ci, CURLOPT_SSL_VERIFYHOST, FALSE); //        SSL        
        }
        curl_setopt($ci, CURLOPT_FOLLOWLOCATION, 1);
        curl_setopt($ci, CURLOPT_MAXREDIRS, 2);/*     HTTP      ,      CURLOPT_FOLLOWLOCATION     */
        curl_setopt($ci, CURLOPT_HTTPHEADER, $headers);
        curl_setopt($ci, CURLINFO_HEADER_OUT, true);
        $response = curl_exec($ci);
        $requestinfo = curl_getinfo($ci);
        if ($debug) {
            echo "=====post data======\r
"; var_dump($postfields); echo "=====info===== \r
"; print_r($requestinfo); echo "=====response=====\r
"; print_r($response); } curl_close($ci); return $response; }

はい、少しの菜鳥の心得、不当なところがあって伝言を歓迎して交流を証言して、いっしょに成長して、ニャー、このようにします!