PHP实现唤起微信支付功能
程序员文章站
2023-11-14 13:34:52
本文实例为大家分享了php唤起微信支付的具体代码,供大家参考,具体内容如下
本文实例为大家分享了php唤起微信支付的具体代码,供大家参考,具体内容如下
<?php /** **/ class h5wxaction extends commonaction { public function __construct() { parent::__construct(); } /* 字段名 变量名 必填 类型 示例值 描述 公众账号id appid 是 string(32) wxd678efh567hg6787 微信分配的公众账号id(企业号corpid即为此appid) 商户号 mch_id 是 string(32) 1230000109 微信支付分配的商户号 设备号 device_info 否 string(32) 013467007045764 终端设备号(门店号或收银设备id),注意:pc网页或公众号内支付请传"web" 随机字符串 nonce_str 是 string(32) 5k8264iltkch16cq2502si8znmtm67vs 随机字符串,不长于32位。推荐随机数生成算法 签名 sign 是 string(32) c380bec2bfd727a4b6845133519f3ad6 签名,详见签名生成算法 签名类型 sign_type 否 string(32) hmac-sha256 签名类型,目前支持hmac-sha256和md5,默认为md5 商品描述 body 是 string(128) 腾讯充值中心-qq会员充值 商品简单描述,该字段须严格按照规范传递,具体请见参数规定 商品详情 detail 否 string(6000) 单品优惠字段(暂未上线) 附加数据 attach 否 string(127) 深圳分店 附加数据,在查询api和支付通知中原样返回,该字段主要用于商户携带订单的自定义数据 商户订单号 out_trade_no 是 string(32) 20150806125346 商户系统内部的订单号,32个字符内、可包含字母, 其他说明见商户订单号 货币类型 fee_type 否 string(16) cny 符合iso 4217标准的三位字母代码,默认人民币:cny,其他值列表详见货币类型 总金额 total_fee 是 int 888 订单总金额,单位为分,详见支付金额 终端ip spbill_create_ip 是 string(16) 123.12.12.123 必须传正确的用户端ip,详见获取用户ip指引 交易起始时间 time_start 否 string(14) 20091225091010 订单生成时间,格式为yyyymmddhhmmss,如2009年12月25日9点10分10秒表示为20091225091010。其他详见时间规则 交易结束时间 time_expire 否 string(14) 20091227091010 订单失效时间,格式为yyyymmddhhmmss,如2009年12月27日9点10分10秒表示为20091227091010。其他详见时间规则 注意:最短失效时间间隔必须大于5分钟 商品标记 goods_tag 否 string(32) wxg 商品标记,代金券或立减优惠功能的参数,说明详见代金券或立减优惠 通知地址 notify_url 是 string(256) http://www.weixin.qq.com/wxpay/pay.php 接收微信支付异步通知回调地址,通知url必须为直接可访问的url,不能携带参数。 交易类型 trade_type 是 string(16) mweb h5支付的交易类型为mweb 商品id product_id 否 string(32) 12235413214070356458058 trade_type=native,此参数必传。此id为二维码中包含的商品id,商户自行定义。 指定支付方式 limit_pay 否 string(32) no_credit no_credit--指定不能使用信用卡支付 用户标识 openid 否 string(128) oupf8umuajo_m2pxb1q9znjwes6o trade_type=jsapi,此参数必传,用户在商户appid下的唯一标识。openid如何获取,可参考【获取openid】。企业号请使用【企业号oauth2.0接口】获取企业号内成员userid,再调用【企业号userid转openid接口】进行转换 场景信息 scene_info 是 string(256) //ios移动应用 {"h5_info": {"type":"ios","app_name": "王者荣耀","bundle_id": "com.tencent.wzryios"}} //安卓移动应用 {"h5_info": {"type":"android","app_name": "王者荣耀","package_name": "com.tencent.tmgp.sgame"}} //wap网站应用 {"h5_info": {"type":"wap","wap_url": "https://pay.qq.com","wap_name": "腾讯充值"}} 该字段用于上报支付的场景信息,针对h5支付有以下三种场景,请根据对应场景上报,h5支付不建议在app端使用,针对场景1,2请接入app支付,不然可能会出现兼容性问题 1,ios移动应用 {"h5_info": //h5支付固定传"h5_info" {"type": "", //场景类型 "app_name": "", //应用名 "bundle_id": "" //bundle_id } } 2,安卓移动应用 {"h5_info": //h5支付固定传"h5_info" {"type": "", //场景类型 "app_name": "", //应用名 "package_name": "" //包名 } } 3,wap网站应用 {"h5_info": //h5支付固定传"h5_info" {"type": "", //场景类型 "wap_url": "",//wap网站url地址 "wap_name": "" //wap 网站名 } } */ public function config(){ $array=array( 'appid'=>'****', //公众账号id appid 是 string(32) wxd678efh567hg6787 微信分配的公众账号id(企业号corpid即为此appid) 'mch_id'=>'****',// 商户号 mch_id 是 string(32) 1230000109 微信支付分配的商户号 'nonce_str'=>rand(100000,999999),// 随机字符串 nonce_str 是 string(32) 5k8264iltkch16cq2502si8znmtm67vs 随机字符串,不长于32位。推荐随机数生成算法 'key'=>'****', 'appsecret'=>'*****', ); return $array; } public function h5weixin(){ $config = $this->config(); $count=1; //$money= 1;//充值金额 $userip = $this->getip(); //获得用户设备ip $appid = $config['appid']; $mch_id = $config['mch_id']; $key = $config['key']; $rand = rand(00000,99999); $out_trade_no = $_post['number'];//订单号 $nonce_str=md5($rand);//随机字符串 $body = $data['title'];//内容 $total_fee = $count; //金额 $spbill_create_ip = $userip; //ip $notify_url = 'http://'.$_server['http_host'].'/wap/h5wx/wxhd'; //回调地址 $redirect_url = 'http://'.$_server['http_host'].'/wap/h5wx/is_wxpay?number='.$_post['number']; //回调地址 $trade_type = 'mweb';//交易类型 $scene_info ='{"h5_info":{"type":"wap","wap_url":"'.$_server['http_host'].'","wap_name":"'.$data['title'].'"}}';//场景信息 $signa ="appid=$appid&body=$body&mch_id=$mch_id&nonce_str=$nonce_str¬ify_url=$notify_url&out_trade_no=$out_trade_no&scene_info=$scene_info&spbill_create_ip=$spbill_create_ip&total_fee=$total_fee&trade_type=$trade_type"; $strsigntmp = $signa."&key=$key"; //拼接字符串 $sign = strtoupper(md5($strsigntmp)); // md5 后转换成大写 $post_data = "<xml> <appid>$appid</appid> <body>$body</body> <mch_id>$mch_id</mch_id> <nonce_str>$nonce_str</nonce_str> <notify_url>$notify_url</notify_url> <out_trade_no>$out_trade_no</out_trade_no> <scene_info>$scene_info</scene_info> <spbill_create_ip>$spbill_create_ip</spbill_create_ip> <total_fee>$total_fee</total_fee> <trade_type>$trade_type</trade_type> <sign>$sign</sign> </xml>";//拼接成xml 格式 $url = "https://api.mch.weixin.qq.com/pay/unifiedorder"; $dataxml = $this->http_post($url,$post_data); $objectxml = (array)simplexml_load_string($dataxml, 'simplexmlelement', libxml_nocdata); if($objectxml['return_code']=='success'){ $json['url'] = $objectxml['mweb_url'].'&redirect_url='.$redirect_url; //唤起微信链接 $json['msg'] = '1'; }else{ $json['info'] ='参数错误'; $json['msg'] ='0'; } echo json_encode($json); } //查询是否支付成功 示例 根据需要调整 public function is_wxpay(){ $out_trade_no = $_get['number']; $type = substr($out_trade_no,0,1); if($type=='b'){ $is_state = m('bond')->where(array('number'=>$out_trade_no))->find(); $url = u('court/details',array('id'=>$is_state['aid'])); }elseif($type=='w'){ $is_state = m('wallet')->where(array('number'=>$out_trade_no))->find(); $url = u('member/wallet'); }else{ $is_state =m('viplog')->where(array('number'=>$out_trade_no))->find(); $url = u('member/vip'); } if($is_state['state']=='1'){ cookie('id',$is_state['mid']); header("location: ".$url.""); }else{ echo '<h1>未查询到此订单的付款信息</h1>'; } } //微信回调地址 public function wxhd(){ $url = 'http://'.$_server['http_host'].$_server['php_self'].'?'.$_server['query_string']; $array = $this->xmltoarray($globals['http_raw_post_data']); m('api_log')->add(array('content'=>json_encode($this->xmltoarray($globals['http_raw_post_data'])).$array['out_trade_no'])); if($array['return_code']=='success'){ $out_trade_no=$array['out_trade_no']; //$number = explode('-',$out_trade_no); $type = substr($out_trade_no,0,1); header("location: http://".$_server['http_host'].$url.""); } } public 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; } public function converturlquery($query) { $queryparts = explode('&', $query); $params = array(); foreach ($queryparts as $param) { $item = explode('=', $param); $params[$item[0]] = $item[1]; } return implode('&',$params); } public function http_post($url, $data) { $ch = curl_init(); curl_setopt($ch, curlopt_url,$url); curl_setopt($ch, curlopt_header,0); curl_setopt($ch, curlopt_returntransfer, 1); curl_setopt($ch, curlopt_post, 1); curl_setopt($ch, curlopt_postfields, $data); $res = curl_exec($ch); curl_close($ch); return $res; } public function getip() { if(getenv('http_client_ip')) { $ip = getenv('http_client_ip'); }elseif (getenv('http_x_forwarded_for')) { $ip = getenv('http_x_forwarded_for'); }elseif (getenv('http_x_forwarded')) { $ip = getenv('http_x_forwarded'); }elseif (getenv('http_forwarded_for')) { $ip = getenv('http_forwarded_for'); }elseif (getenv('http_forwarded')) { $ip = getenv('http_forwarded'); }else { $ip = $_server['remote_addr']; } return $ip; } } ?>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。