欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP实现 APP端微信支付功能

程序员文章站 2023-09-07 10:37:40
前面已经写了手机app支付宝支付,今天再把手机app微信支付补上,前期的准备工作在这里就不多说了,可以参考,一定要仔细阅读开发文档,可以让你少踩点坑;准备工作完成后就是配置...

前面已经写了手机app支付宝支付,今天再把手机app微信支付补上,前期的准备工作在这里就不多说了,可以参考,一定要仔细阅读开发文档,可以让你少踩点坑;准备工作完成后就是配置参数,调用统一下单接口,支付后异步回调三部曲啦;

1.我封装好的一个支付类文件,多余的东西都去除掉了,并且把配置参数放到了这个支付类中,只需要修改weixinpayandroid方法内的几个参数就可以直接复制使用:

class wxpayandroid
{
 //参数配置
 public $config = array(
    'appid' => "", /*微信开放平台上的应用id*/
    'mch_id' => "", /*微信申请成功之后邮件中的商户id*/
    'api_key' => "", /*在微信商户平台上自己设定的api密钥 32位*/
   );
 //服务器异步通知页面路径(必填)
 public $notify_url = '';
 //商户订单号(必填,商户网站订单系统中唯一订单号)
 public $out_trade_no = '';
 //商品描述(必填,不填则为商品名称)
 public $body = '';
 //付款金额(必填)
 public $total_fee = 0;
 //自定义超时(选填,支持dhmc)
 public $time_expire = '';
 private $wxpayhelper;
 public function weixinpayandroid($total_fee,$tade_no)
 {
  $this->total_fee = intval($total_fee * 100);//订单的金额 1元
  $this->out_trade_no = $tade_no;// date('ymdhis') . substr(time(), - 5) . substr(microtime(), 2, 5) . sprintf('%02d', rand(0, 99));//订单号
  $this->body = 'wxpay';//支付描述信息
  $this->time_expire = date('ymdhis', time() + 86400);//订单支付的过期时间(eg:一天过期)
  $this->notify_url = "http://www.ceshi.com/notifyandroid";//异步通知url(更改支付状态)
  //数据以json的形式返回给app
  $app_response = $this->dopay(); 
  if (isset($app_response['return_code']) && $app_response['return_code'] == 'fail') {
   $errorcode = 100;
   $errormsg = $app_response['return_msg'];
   $this->echoresult($errorcode, $errormsg);
  } else {
   $errorcode = 0;
   $errormsg = 'success';
   $responsedata = array(
    'notify_url' => $this->notify_url,
    'app_response' => $app_response,
   );
   $this->echoresult($errorcode, $errormsg, $responsedata);
  }
 }
 //接口输出
 function echoresult($errorcode = 0, $errormsg = 'success', $responsedata = array())
 {
  $arr = array(
   'errorcode' => $errorcode,
   'errormsg' => $errormsg,
   'responsedata' => $responsedata,
  );
   exit(json_encode($arr));  //exit可以正常发送给app json数据
  // return json_encode($arr); //在tp5中return这个json数据,app接收到的是null,无法正常吊起微信支付
 }
 function getverifysign($data, $key)
 {
  $string = $this->formatparameters($data, false);
  //签名步骤二:在string后加入key
  $string = $string . "&key=" . $key;
  //签名步骤三:md5加密
  $string = md5($string);
  //签名步骤四:所有字符转为大写
  $result = strtoupper($string);
  return $result;
 }
 function formatparameters($paramap, $urlencode)
 {
  $buff = "";
  ksort($paramap);
  foreach ($paramap as $k => $v) {
   if($k=="sign"){
    continue;
   }
   if ($urlencode) {
    $v = urlencode($v);
   }
   $buff .= $k . "=" . $v . "&";
  }
  $reqpar;
  if (strlen($buff) > 0) {
   $reqpar = substr($buff, 0, strlen($buff) - 1);
  }
  return $reqpar;
 }
 /**
  * 得到签名
  * @param object $obj
  * @param string $api_key
  * @return string
  */
 function getsign($obj, $api_key)
 {
  foreach ($obj as $k => $v)
  {
   $parameters[strtolower($k)] = $v;
  }
  //签名步骤一:按字典序排序参数
  ksort($parameters);
  $string = $this->formatbizqueryparamap($parameters, false);
  //签名步骤二:在string后加入key
  $string = $string."&key=".$api_key;
  //签名步骤三:md5加密
  $result = strtoupper(md5($string));
  return $result;
 }
 /**
  * 获取指定长度的随机字符串
  * @param int $length
  * @return ambigous <null, string>
  */
 function getrandchar($length){
  $str = null;
  $strpol = "abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz";
  $max = strlen($strpol)-1;
  for($i=0;$i<$length;$i++){
   $str.=$strpol[rand(0,$max)];//rand($min,$max)生成介于min和max两个数之间的一个随机整数
  }
  return $str;
 }
 /**
  * 数组转xml
  * @param array $arr
  * @return string
  */
 function arraytoxml($arr)
 {
  $xml = "<xml>";
  foreach ($arr as $key=>$val)
  {
    if (is_numeric($val))
    {
    $xml.="<".$key.">".$val."</".$key.">";
    }
    else
    $xml.="<".$key."><![cdata[".$val."]]></".$key.">"; 
  }
  $xml.="</xml>";
  return $xml;
 }
 /**
  * 以post方式提交xml到对应的接口url
  *
  * @param string $xml 需要post的xml数据
  * @param string $url url
  * @param bool $usecert 是否需要证书,默认不需要
  * @param int $second url执行超时时间,默认30s
  * @throws wxpayexception
  */
 function postxmlcurl($xml, $url, $second=30, $usecert=false, $sslcert_path='', $sslkey_path='')
 {
  $ch = curl_init();
  //设置超时
  curl_setopt($ch, curlopt_timeout, $second);
  curl_setopt($ch,curlopt_url, $url);
  //设置header
  curl_setopt($ch, curlopt_header, false);
  //要求结果为字符串且输出到屏幕上
  curl_setopt($ch, curlopt_returntransfer, true);
  curl_setopt($ch,curlopt_ssl_verifypeer,false);
  curl_setopt($ch,curlopt_ssl_verifyhost,false);
  if($usecert == true){
   curl_setopt($ch,curlopt_ssl_verifypeer,true);
   curl_setopt($ch,curlopt_ssl_verifyhost,2);//严格校验
   //设置证书
   //使用证书:cert 与 key 分别属于两个.pem文件
   curl_setopt($ch,curlopt_sslcerttype,'pem');
   curl_setopt($ch,curlopt_sslcert, $sslcert_path);
   curl_setopt($ch,curlopt_sslkeytype,'pem');
   curl_setopt($ch,curlopt_sslkey, $sslkey_path);
  }
  //post提交方式
  curl_setopt($ch, curlopt_post, true);
  curl_setopt($ch, curlopt_postfields, $xml);
  //运行curl
  $data = curl_exec($ch);
  //返回结果
  if($data){
   curl_close($ch);
   return $data;
  } else {
   $error = curl_errno($ch);
   curl_close($ch);
   return false;
  }
 }
 /**
  * 获取当前服务器的ip
  * @return ambigous <string, unknown>
  */
 function get_client_ip()
 {
  if (isset($_server['remote_addr'])) {
   $cip = $_server['remote_addr'];
  } elseif (getenv("remote_addr")) {
   $cip = getenv("remote_addr");
  } elseif (getenv("http_client_ip")) {
   $cip = getenv("http_client_ip");
  } else {
   $cip = "127.0.0.1";
  }
  return $cip;
 }
 /**
  * 将数组转成uri字符串
  * @param array $paramap
  * @param bool $urlencode
  * @return string
  */
 function formatbizqueryparamap($paramap, $urlencode)
 {
  $buff = "";
  ksort($paramap);
  foreach ($paramap as $k => $v)
  {
   if($urlencode)
   {
    $v = urlencode($v);
   }
   $buff .= strtolower($k) . "=" . $v . "&";
  }
  $reqpar;
  if (strlen($buff) > 0)
  {
   $reqpar = substr($buff, 0, strlen($buff)-1);
  }
  return $reqpar;
 }
 /**
  * xml转数组
  * @param unknown $xml
  * @return mixed
  */
 function xmltoarray($xml)
 {
  //将xml转为array
  $array_data = json_decode(json_encode(simplexml_load_string($xml, 'simplexmlelement', libxml_nocdata)), true);
  return $array_data;
 }
 public function chkparam()
 {
  //用户网站订单号
  if (empty($this->out_trade_no)) {
   die('out_trade_no error');
  } 
  //商品描述
  if (empty($this->body)) {
   die('body error');
  }
  if (empty($this->time_expire)){
   die('time_expire error');
  }
  //检测支付金额
  if (empty($this->total_fee) || !is_numeric($this->total_fee)) {
   die('total_fee error');
  }
  //异步通知url
  if (empty($this->notify_url)) {
   die('notify_url error');
  }
  if (!preg_match("#^http:\/\/#i", $this->notify_url)) {
   $this->notify_url = "http://" . $_server['http_host'] . $this->notify_url;
  }
  return true;
 }
 /**
  * 生成支付(返回给app)
  * @return boolean|mixed
  */
 public function dopay() {
  //检测构造参数
  $this->chkparam();
  return $this->createapppara();
 }
 /**
  * app统一下单
  */
 private function createapppara()
 {
  $url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
  $data["appid"]  = $this->config['appid'];//微信开放平台审核通过的应用appid
  $data["body"]   = $this->body;//商品或支付单简要描述
  $data["mch_id"]  = $this->config['mch_id'];//商户号
  $data["nonce_str"] = $this->getrandchar(32);//随机字符串
  $data["notify_url"] = $this->notify_url;//通知地址
  $data["out_trade_no"] = $this->out_trade_no;//商户订单号
  $data["spbill_create_ip"] = $this->get_client_ip();//终端ip
  $data["total_fee"]  = $this->total_fee;//总金额
  $data["time_expire"]  = $this->time_expire;//交易结束时间
  $data["trade_type"]  = "app";//交易类型
  $data["sign"]    = $this->getsign($data, $this->config['api_key']);//签名
  $xml  = $this->arraytoxml($data);
  $response = $this->postxmlcurl($xml, $url);
  //将微信返回的结果xml转成数组
  $responsearr = $this->xmltoarray($response);
  if(isset($responsearr["return_code"]) && $responsearr["return_code"]=='success'){
   return $this->getorder($responsearr['prepay_id']);
  }
  return $responsearr;
 }
 /**
  * 执行第二次签名,才能返回给客户端使用
  * @param int $prepayid:预支付交易会话标识
  * @return array
  */
 public function getorder($prepayid)
 {
  $data["appid"]  = $this->config['appid'];
  $data["noncestr"] = $this->getrandchar(32);
  $data["package"] = "sign=wxpay";
  $data["partnerid"] = $this->config['mch_id'];
  $data["prepayid"] = $prepayid;
  $data["timestamp"] = time();
  $data["sign"]  = $this->getsign($data, $this->config['api_key']);
  $data["packagestr"] = "sign=wxpay";
  return $data;
 }
 /**
  * 异步通知信息验证
  * @return boolean|mixed
  */
 public function verifynotify()
 {
  $xml = isset($globals['http_raw_post_data']) ? $globals['http_raw_post_data'] : ''; 
  if(!$xml){
   return false;
  }
  $wx_back = $this->xmltoarray($xml);
  if(empty($wx_back)){
   return false;
  }
  $checksign = $this->getverifysign($wx_back, $this->config['api_key']); 
  if($checksign=$wx_back['sign']){
   return $wx_back;
  }else{
   return false;
  } 
 }
}

2.创建控制器定义统一下单接口和支付后的异步回调接口:

//异步通知接口
 public function notifyandroid()
 {
  $wxpayandroid = new \wxpayandroid;  //实例化微信支付类
  $verify_result = $wxpayandroid->verifynotify();
  if ($verify_result['return_code']=='success' && $verify_result['result_code']=='success') {
    //商户订单号
    $out_trade_no = $verify_result['out_trade_no'];
    //交易号
    $trade_no  = $verify_result['transaction_id'];
    //交易状态
    $trade_status = $verify_result['result_code'];
    //支付金额
    $total_fee = $verify_result['total_fee']/100;
    //支付过期时间
    $pay_date  = $verify_result['time_end'];
    $order = new order();
    $ret = $order->getordern2($out_trade_no); //获取订单信息
    $total_amount=$ret['money'];
    if ($total_amount==$total_fee) {
     // 验证成功 修改数据库的订单状态等 $result['out_trade_no']为订单号
     //此处写自己的逻辑代码
    }
   exit('<xml><return_code><![cdata[success]]></return_code><return_msg><![cdata[ok]]></return_msg></xml>');
  }else{
   exit('<xml><return_code><![cdata[fail]]></return_code><return_msg><![cdata[error]]></return_msg></xml>');
  }
 }
 
 //调用统一下单接口生成预支付订单并把数据返回给app
 public function wxpayandroid(request $request)
 {
  $param = $request->param(); //接收值
 
  $tade_no = $param['ordercode'];
  $order = new order(); //实例化订单
  $ret = $order->getordern2($tade_no); //查询订单信息
  $total_fee = $ret['money']; //订单总金额
  
  $wxpayandroid = new \wxpayandroid;  //实例化微信支付类
  $res = $wxpayandroid->weixinpayandroid($total_fee,$tade_no); //调用weixinpay方法
  
 }

封装一个支付类文件,并把配置参数放到支付类内,再定义控制器创建两个方法,这样两步就可以把手机app微信支付搞定啦。

总结

以上所述是小编给大家介绍的php实现 app端微信支付功能,希望对大家有所帮助