微信ウィジェットとphpが微信支払いを実現する簡単な例

9038 ワード

微信ウィジェットとphpが微信支払いを実現する簡単な例
アプレットアクセスアドレス:
payfee.PHP:

include 'WeixinPay.php'; 
$appid=''; 
$openid= $_GET['id']; 
$mch_id=''; 
$key=''; 
$out_trade_no = $mch_id. time(); 
$total_fee = $_GET['fee']; 
if(empty($total_fee)) //   
{ 
  $body = "    "; 
  $total_fee = floatval(99*100); 
} 
 else { 
   $body = "    "; 
   $total_fee = floatval($total_fee*100); 
 } 
$weixinpay = new WeixinPay($appid,$openid,$mch_id,$key,$out_trade_no,$body,$total_fee); 
$return=$weixinpay->pay(); 
 
echo json_encode($return); 

WeixinPay.php:

appid = $appid; 
    $this->openid = $openid; 
    $this->mch_id = $mch_id; 
    $this->key = $key; 
    $this->out_trade_no = $out_trade_no; 
    $this->body = $body; 
    $this->total_fee = $total_fee; 
  } 
 
 
  public function pay() { 
    //       
    $return = $this->weixinapp(); 
    return $return; 
  } 
 
 
  //       
  private function unifiedorder() { 
    $url = 'https://api.mch.weixin.qq.com/pay/unifiedorder'; 
    $parameters = array( 
      'appid' => $this->appid, //   ID 
      'mch_id' => $this->mch_id, //    
      'nonce_str' => $this->createNoncestr(), //      
//      'body' => 'test', //     
      'body' => $this->body, 
//      'out_trade_no' => '2015450806125348', //      
      'out_trade_no'=> $this->out_trade_no, 
//      'total_fee' => floatval(0.01 * 100), //         
      'total_fee' => $this->total_fee, 
//      'spbill_create_ip' => $_SERVER['REMOTE_ADDR'], //  IP 
      'spbill_create_ip' => '192.168.0.161', //  IP 
      'notify_url' => 'http://www.weixin.qq.com/wxpay/pay.php', //               
      'openid' => $this->openid, //  id 
      'trade_type' => 'JSAPI'//     
    ); 
    //       
    $parameters['sign'] = $this->getSign($parameters); 
    $xmlData = $this->arrayToXml($parameters); 
    $return = $this->xmlToArray($this->postXmlCurl($xmlData, $url, 60)); 
    return $return; 
  } 
 
 
  private static function postXmlCurl($xml, $url, $second = 30)  
  { 
    $ch = curl_init(); 
    //     
    curl_setopt($ch, CURLOPT_TIMEOUT, $second); 
    curl_setopt($ch, CURLOPT_URL, $url); 
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); 
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); //     
    //  header 
    curl_setopt($ch, CURLOPT_HEADER, FALSE); 
    //                
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); 
    //post     
    curl_setopt($ch, CURLOPT_POST, TRUE); 
    curl_setopt($ch, CURLOPT_POSTFIELDS, $xml); 
 
 
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 20); 
    curl_setopt($ch, CURLOPT_TIMEOUT, 40); 
    set_time_limit(0); 
 
 
    //  curl 
    $data = curl_exec($ch); 
    //     
    if ($data) { 
      curl_close($ch); 
      return $data; 
    } else { 
      $error = curl_errno($ch); 
      curl_close($ch); 
      throw new WxPayException("curl  ,   :$error"); 
    } 
  } 
   
   
   
  //     xml 
  private function arrayToXml($arr) { 
    $xml = ""; 
    foreach ($arr as $key => $val) { 
      if (is_array($val)) { 
        $xml .= "" . arrayToXml($val) . "" . $key . ">"; 
      } else { 
        $xml .= "" . $val . "" . $key . ">"; 
      } 
    } 
    $xml .= ""; 
    return $xml; 
  } 
 
 
  //xml      
  private function xmlToArray($xml) { 
 
 
    //      xml    
 
 
    libxml_disable_entity_loader(true); 
 
 
    $xmlstring = simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA); 
 
 
    $val = json_decode(json_encode($xmlstring), true); 
 
 
    return $val; 
  } 
 
 
  //        
  private function weixinapp() { 
    //       
    $unifiedorder = $this->unifiedorder(); 
//    print_r($unifiedorder); 
    $parameters = array( 
      'appId' => $this->appid, //   ID 
      'timeStamp' => '' . time() . '', //    
      'nonceStr' => $this->createNoncestr(), //    
      'package' => 'prepay_id=' . $unifiedorder['prepay_id'], //    
      'signType' => 'MD5'//     
    ); 
    //   
    $parameters['paySign'] = $this->getSign($parameters); 
    return $parameters; 
  } 
 
 
  //  :       ,   32  
  private function createNoncestr($length = 32) { 
    $chars = "abcdefghijklmnopqrstuvwxyz0123456789"; 
    $str = ""; 
    for ($i = 0; $i < $length; $i++) { 
      $str .= substr($chars, mt_rand(0, strlen($chars) - 1), 1); 
    } 
    return $str; 
  } 
 
 
  //  :     
  private function getSign($Obj) { 
    foreach ($Obj as $k => $v) { 
      $Parameters[$k] = $v; 
    } 
    //     :         
    ksort($Parameters); 
    $String = $this->formatBizQueryParaMap($Parameters, false); 
    //     : string   KEY 
    $String = $String . "&key=" . $this->key; 
    //     :MD5   
    $String = md5($String); 
    //     :         
    $result_ = strtoupper($String); 
    return $result_; 
  } 
 
 
  ///  :     ,         
  private function formatBizQueryParaMap($paraMap, $urlencode) { 
    $buff = ""; 
    ksort($paraMap); 
    foreach ($paraMap as $k => $v) { 
      if ($urlencode) { 
        $v = urlencode($v); 
      } 
      $buff .= $k . "=" . $v . "&"; 
    } 
    $reqPar; 
    if (strlen($buff) > 0) { 
      $reqPar = substr($buff, 0, strlen($buff) - 1); 
    } 
    return $reqPar; 
  } 
 
 
} 


ウィジェットページ処理:

wx.request({ 
url:'https://www.yourhost.com/weixin/WeiActivity/payfee.php',//         
header:{ 
'Content-Type':'application/x-www-form-urlencoded' 
}, 
method:'POST', 
success:function(res){ 
console.log(res.data); 
console.log('    '); 
wx.requestPayment({ 
'timeStamp': res.data.timeStamp, 
'nonceStr': res.data.nonceStr, 
'package': res.data.package, 
'signType':'MD5', 
'paySign': res.data.paySign, 
'success':function(res){ 
console.log('success'); 
wx.showToast({ 
title:'    ', 
icon:'success', 
duration:3000 
}); 
}, 
'fail':function(res){ 
console.log('fail'); 
}, 
'complete':function(res){ 
console.log('complete'); 
} 
}); 
}, 
fail:function(res){ 
console.log(res.data) 
} 
}); 

コールバックurl:notify.php

$postXml = $GLOBALS["HTTP_RAW_POST_DATA"]; //       
if (empty($postXml)) { 
  return false; 
} 
 
// xml        
function xmlToArray($xml) { 
 
  //      xml    
  libxml_disable_entity_loader(true); 
 
  $xmlstring = simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA); 
 
  $val = json_decode(json_encode($xmlstring), true); 
 
  return $val; 
} 
 
$attr = xmlToArray($postXml); 
 
$total_fee = $attr[total_fee]; 
$open_id = $attr[openid]; 
$out_trade_no = $attr[out_trade_no]; 
$time = $attr[time_end]; 

以上のステップでは、小さなプログラムの微信支払いとphpを完璧に結びつけることができます.
読書に感謝して、みんなを助けることができることを望んで、みんなの当駅に対する支持に感謝します!