1. 类库代码 wechatH5Pay.php
  1. <?php
  2. //use Flight;
  3. /**
  4. * 微信支付服务器端下单
  5. * 微信APP支付文档地址: https://pay.weixin.qq.com/wiki/doc/api/app.php?chapter=8_6
  6. * 使用示例
  7. * 构造方法参数
  8. * 'appid' => //填写微信分配的公众账号ID
  9. * 'mch_id' => //填写微信支付分配的商户号
  10. * 'notify_url'=> //填写微信支付结果回调地址
  11. * 'key' => //填写微信商户支付密钥
  12. * );
  13. * 统一下单方法
  14. * $WechatAppPay = new wechatAppPay($options);
  15. * $params['body'] = '商品描述'; //商品描述
  16. * $params['out_trade_no'] = '1217752501201407'; //自定义的订单号,不能重复
  17. * $params['total_fee'] = '100'; //订单金额 只能为整数 单位为分
  18. * $params['trade_type'] = 'APP'; //交易类型 JSAPI | NATIVE |APP | WAP
  19. * $wechatAppPay->unifiedOrder( $params );
  20. */
  21. class wechatAppPay
  22. {
  23. //接口API URL前缀
  24. const API_URL_PREFIX = 'https://api.mch.weixin.qq.com';
  25. //下单地址URL
  26. const UNIFIEDORDER_URL = "/pay/unifiedorder";
  27. //查询订单URL
  28. const ORDERQUERY_URL = "/pay/orderquery";
  29. //关闭订单URL
  30. const CLOSEORDER_URL = "/pay/closeorder";
  31. //公众账号ID
  32. private $appid;
  33. //商户号
  34. private $mch_id;
  35. //随机字符串
  36. private $nonce_str;
  37. //签名
  38. private $sign;
  39. //商品描述
  40. private $body;
  41. //商户订单号
  42. private $out_trade_no;
  43. //支付总金额
  44. private $total_fee;
  45. //终端IP
  46. private $spbill_create_ip;
  47. //支付结果回调通知地址
  48. private $notify_url;
  49. //交易类型
  50. private $trade_type;
  51. //支付密钥
  52. private $key;
  53. //证书路径
  54. private $SSLCERT_PATH;
  55. private $SSLKEY_PATH;
  56. //所有参数
  57. private $params = array();
  58. public function __construct($appid, $mch_id, $notify_url, $key)
  59. {
  60. $this->appid = $appid;
  61. $this->mch_id = $mch_id;
  62. $this->notify_url = $notify_url;
  63. $this->key = $key;
  64. }
  65. /**
  66. * 下单方法
  67. * @param $params 下单参数
  68. */
  69. public function unifiedOrder( $params ){
  70. $this->body = $params['body'];
  71. $this->out_trade_no = $params['out_trade_no'];
  72. $this->total_fee = $params['total_fee'];
  73. $this->trade_type = $params['trade_type'];
  74. $this->scene_info = $params['scene_info'];
  75. $this->nonce_str = $this->genRandomString();
  76. $this->spbill_create_ip = $_SERVER['REMOTE_ADDR'];
  77. $this->params['appid'] = $this->appid;
  78. $this->params['mch_id'] = $this->mch_id;
  79. $this->params['nonce_str'] = $this->nonce_str;
  80. $this->params['body'] = $this->body;
  81. $this->params['out_trade_no'] = $this->out_trade_no;
  82. $this->params['total_fee'] = $this->total_fee;
  83. $this->params['spbill_create_ip'] = $this->spbill_create_ip;
  84. $this->params['notify_url'] = $this->notify_url;
  85. $this->params['trade_type'] = $this->trade_type;
  86. $this->params['scene_info'] = $this->scene_info;
  87. //获取签名数据
  88. $this->sign = $this->MakeSign( $this->params );
  89. $this->params['sign'] = $this->sign;
  90. $xml = $this->data_to_xml($this->params);
  91. $response = $this->postXmlCurl($xml, self::API_URL_PREFIX.self::UNIFIEDORDER_URL);
  92. if( !$response ){
  93. return false;
  94. }
  95. $result = $this->xml_to_data( $response );
  96. if( !empty($result['result_code']) && !empty($result['err_code']) ){
  97. $result['err_msg'] = $this->error_code( $result['err_code'] );
  98. }
  99. return $result;
  100. }
  101. /**
  102. * 查询订单信息
  103. * @param $out_trade_no 订单号
  104. * @return array
  105. */
  106. public function orderQuery( $out_trade_no ){
  107. $this->params['appid'] = $this->appid;
  108. $this->params['mch_id'] = $this->mch_id;
  109. $this->params['nonce_str'] = $this->genRandomString();
  110. $this->params['out_trade_no'] = $out_trade_no;
  111. //获取签名数据
  112. $this->sign = $this->MakeSign( $this->params );
  113. $this->params['sign'] = $this->sign;
  114. $xml = $this->data_to_xml($this->params);
  115. $response = $this->postXmlCurl($xml, self::API_URL_PREFIX.self::ORDERQUERY_URL);
  116. if( !$response ){
  117. return false;
  118. }
  119. $result = $this->xml_to_data( $response );
  120. if( !empty($result['result_code']) && !empty($result['err_code']) ){
  121. $result['err_msg'] = $this->error_code( $result['err_code'] );
  122. }
  123. return $result;
  124. }
  125. /**
  126. * 关闭订单
  127. * @param $out_trade_no 订单号
  128. * @return array
  129. */
  130. public function closeOrder( $out_trade_no ){
  131. $this->params['appid'] = $this->appid;
  132. $this->params['mch_id'] = $this->mch_id;
  133. $this->params['nonce_str'] = $this->genRandomString();
  134. $this->params['out_trade_no'] = $out_trade_no;
  135. //获取签名数据
  136. $this->sign = $this->MakeSign( $this->params );
  137. $this->params['sign'] = $this->sign;
  138. $xml = $this->data_to_xml($this->params);
  139. $response = $this->postXmlCurl($xml, self::API_URL_PREFIX.self::CLOSEORDER_URL);
  140. if( !$response ){
  141. return false;
  142. }
  143. $result = $this->xml_to_data( $response );
  144. return $result;
  145. }
  146. /**
  147. *
  148. * 获取支付结果通知数据
  149. * return array
  150. */
  151. public function getNotifyData(){
  152. //获取通知的数据
  153. $xml = $GLOBALS['HTTP_RAW_POST_DATA'];
  154. //echo 123;die;
  155. $data = array();
  156. if( empty($xml) ){
  157. return false;
  158. }
  159. $data = $this->xml_to_data( $xml );
  160. if( !empty($data['return_code']) ){
  161. if( $data['return_code'] == 'FAIL' ){
  162. return false;
  163. }
  164. }
  165. return $data;
  166. }
  167. /**
  168. * 接收通知成功后应答输出XML数据
  169. * @param string $xml
  170. */
  171. public function replyNotify(){
  172. $data['return_code'] = 'SUCCESS';
  173. $data['return_msg'] = 'OK';
  174. $xml = $this->data_to_xml( $data );
  175. echo $xml;
  176. die();
  177. }
  178. /**
  179. * 生成APP端支付参数
  180. * @param $prepayid 预支付id
  181. */
  182. public function getAppPayParams( $prepayid ){
  183. $data['appid'] = $this->appid;
  184. $data['partnerid'] = $this->mch_id;
  185. $data['prepayid'] = $prepayid;
  186. $data['package'] = 'Sign=WXPay';
  187. $data['noncestr'] = $this->genRandomString();
  188. $data['timestamp'] = time();
  189. $data['sign'] = $this->MakeSign( $data );
  190. return $data;
  191. }
  192. /**
  193. * 生成签名
  194. * @return 签名
  195. */
  196. public function MakeSign( $params ){
  197. //签名步骤一:按字典序排序数组参数
  198. ksort($params);
  199. $string = $this->ToUrlParams($params);
  200. //签名步骤二:在string后加入KEY
  201. $string = $string . "&key=".$this->key;
  202. //签名步骤三:MD5加密
  203. $string = md5($string);
  204. //签名步骤四:所有字符转为大写
  205. $result = strtoupper($string);
  206. return $result;
  207. }
  208. /**
  209. * 将参数拼接为url: key=value&key=value
  210. * @param $params
  211. * @return string
  212. */
  213. public function ToUrlParams( $params ){
  214. $string = '';
  215. if( !empty($params) ){
  216. $array = array();
  217. foreach( $params as $key => $value ){
  218. $array[] = $key.'='.$value;
  219. }
  220. $string = implode("&",$array);
  221. }
  222. return $string;
  223. }
  224. /**
  225. * 输出xml字符
  226. * @param $params 参数名称
  227. * return string 返回组装的xml
  228. **/
  229. public function data_to_xml( $params ){
  230. if(!is_array($params)|| count($params) <= 0)
  231. {
  232. return false;
  233. }
  234. $xml = "<xml>";
  235. foreach ($params as $key=>$val)
  236. {
  237. if (is_numeric($val)){
  238. $xml.="<".$key.">".$val."</".$key.">";
  239. }else{
  240. $xml.="<".$key."><![CDATA[".$val."]]></".$key.">";
  241. }
  242. }
  243. $xml.="</xml>";
  244. return $xml;
  245. }
  246. /**
  247. * 将xml转为array
  248. * @param string $xml
  249. * return array
  250. */
  251. public function xml_to_data($xml){
  252. if(!$xml){
  253. return false;
  254. }
  255. //将XML转为array
  256. //禁止引用外部xml实体
  257. libxml_disable_entity_loader(true);
  258. $data = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
  259. return $data;
  260. }
  261. /**
  262. * 获取毫秒级别的时间戳
  263. */
  264. private static function getMillisecond(){
  265. //获取毫秒的时间戳
  266. $time = explode ( " ", microtime () );
  267. $time = $time[1] . ($time[0] * 1000);
  268. $time2 = explode( ".", $time );
  269. $time = $time2[0];
  270. return $time;
  271. }
  272. /**
  273. * 产生一个指定长度的随机字符串,并返回给用户
  274. * @param type $len 产生字符串的长度
  275. * @return string 随机字符串
  276. */
  277. private function genRandomString($len = 32) {
  278. $chars = array(
  279. "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k",
  280. "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v",
  281. "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G",
  282. "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R",
  283. "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2",
  284. "3", "4", "5", "6", "7", "8", "9"
  285. );
  286. $charsLen = count($chars) - 1;
  287. // 将数组打乱
  288. shuffle($chars);
  289. $output = "";
  290. for ($i = 0; $i < $len; $i++) {
  291. $output .= $chars[mt_rand(0, $charsLen)];
  292. }
  293. return $output;
  294. }
  295. /**
  296. * 以post方式提交xml到对应的接口url
  297. *
  298. * @param string $xml 需要post的xml数据
  299. * @param string $url url
  300. * @param bool $useCert 是否需要证书,默认不需要
  301. * @param int $second url执行超时时间,默认30s
  302. * @throws WxPayException
  303. */
  304. private function postXmlCurl($xml, $url, $useCert = false, $second = 30){
  305. $ch = curl_init();
  306. //设置超时
  307. curl_setopt($ch, CURLOPT_TIMEOUT, $second);
  308. curl_setopt($ch,CURLOPT_URL, $url);
  309. curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
  310. curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,2);
  311. //设置header
  312. curl_setopt($ch, CURLOPT_HEADER, FALSE);
  313. //要求结果为字符串且输出到屏幕上
  314. curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
  315. if($useCert == true){
  316. //设置证书
  317. //使用证书:cert 与 key 分别属于两个.pem文件
  318. curl_setopt($ch,CURLOPT_SSLCERTTYPE,'PEM');
  319. //curl_setopt($ch,CURLOPT_SSLCERT, WxPayConfig::SSLCERT_PATH);
  320. curl_setopt($ch,CURLOPT_SSLKEYTYPE,'PEM');
  321. //curl_setopt($ch,CURLOPT_SSLKEY, WxPayConfig::SSLKEY_PATH);
  322. }
  323. //post提交方式
  324. curl_setopt($ch, CURLOPT_POST, TRUE);
  325. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
  326. //运行curl
  327. $data = curl_exec($ch);
  328. //返回结果
  329. if($data){
  330. curl_close($ch);
  331. return $data;
  332. } else {
  333. $error = curl_errno($ch);
  334. curl_close($ch);
  335. return false;
  336. }
  337. }
  338. /**
  339. * 错误代码
  340. * @param $code 服务器输出的错误代码
  341. * return string
  342. */
  343. public function error_code( $code ){
  344. $errList = array(
  345. 'NOAUTH' => '商户未开通此接口权限',
  346. 'NOTENOUGH' => '用户帐号余额不足',
  347. 'ORDERNOTEXIST' => '订单号不存在',
  348. 'ORDERPAID' => '商户订单已支付,无需重复操作',
  349. 'ORDERCLOSED' => '当前订单已关闭,无法支付',
  350. 'SYSTEMERROR' => '系统错误!系统超时',
  351. 'APPID_NOT_EXIST' => '参数中缺少APPID',
  352. 'MCHID_NOT_EXIST' => '参数中缺少MCHID',
  353. 'APPID_MCHID_NOT_MATCH' => 'appid和mch_id不匹配',
  354. 'LACK_PARAMS' => '缺少必要的请求参数',
  355. 'OUT_TRADE_NO_USED' => '同一笔交易不能多次提交',
  356. 'SIGNERROR' => '参数签名结果不正确',
  357. 'XML_FORMAT_ERROR' => 'XML格式错误',
  358. 'REQUIRE_POST_METHOD' => '未使用post传递参数 ',
  359. 'POST_DATA_EMPTY' => 'post数据不能为空',
  360. 'NOT_UTF8' => '未使用指定编码格式',
  361. );
  362. if( array_key_exists( $code , $errList ) ){
  363. return $errList[$code];
  364. }
  365. }
  366. }
  1.  

  

  1. 调用实例wxh5.php
  1. <?php
  2. namespace weixinpayApp;
  3. include 'wechatH5Pay.php';
  4. class wxh5{
  5. //$data 金额和订单号
  6. public function wxh5Request($data){
  7. $appid = 'wxdf************';
  8. $mch_id = '*********';//商户号
  9. $key = '32位申请时自己设置的';//商户key
  10. $notify_url = "https://www.gujia.la/wxnativepay";//回调地址
  11. $wechatAppPay = new \wechatAppPay($appid, $mch_id, $notify_url, $key);
  12. $params['body'] = '估价啦'; //商品描述
  13. $params['out_trade_no'] = $data['oid']; //自定义的订单号
  14. $params['total_fee'] = '1'; //订单金额 只能为整数 单位为分
  15. $params['trade_type'] = 'MWEB'; //交易类型 JSAPI | NATIVE | APP | WAP
  16. $params['scene_info'] = '{"h5_info": {"type":"Wap","wap_url": "https://api.lanhaitools.com/wap","wap_name": "估价啦"}}';
  17. $result = $wechatAppPay->unifiedOrder( $params );
  18. $url = $result['mweb_url'].'&redirect_url=https%3A%2F%2Fwww.gujia.la';//redirect_url 是支付完成后返回的页面
  19. return $url;
  20. }
  21. }
  1.  

  

  1. 转载地址:http://www.thinkphp.cn/code/3559.html

分享微信h5支付源码的更多相关文章

  1. 微信h5支付源码DEMO参考

    类库代码 wechatH5Pay.php <?php //use Flight; /** * 微信支付服务器端下单 * 微信APP支付文档地址: https://pay.weixin.qq.co ...

  2. 工具 - 怎么看微信h5的源码?

    这个问题在我看网易的h5案例的时候萌生的.因为想看他的源码,但是手机微信打开肯定看不了. 以下几种看代码的方法:(页面案例用网易大大刷屏的h5<二零一六娱乐圈画卷>,真的是一个值得我等众生 ...

  3. 分享微信h5支付经验

    <?php //use Flight; /** * 微信支付服务器端下单 * 微信APP支付文档地址: https://pay.weixin.qq.com/wiki/doc/api/app.ph ...

  4. H5传奇源码,附带微信支付,商城系统,新增了元宝交易商城系统源码

    源码说明:传奇游戏是80年底的经典游戏,传奇源码,H5游戏源码下载,附带微信支付,商城系统,新增了元宝交易商城系统源码,内置很多任务,比如首冲任务,修复了很多BUG.[架设要求]游戏名称:H5传奇世界 ...

  5. C#版微信公众号支付|微信H5支付|微信扫码支付问题汇总及解决方案总结

    最近负责的一些项目开发,都用到了微信支付(微信公众号支付.微信H5支付.微信扫码支付).在开发的过程中,在调试支付的过程中,或多或少都遇到了一些问题,今天总结下,分享,留存.代码在文章结尾处,有需要的 ...

  6. 微信公众号支付|微信H5支付|微信扫码支付|小程序支付|APP微信支付解决方案总结

    最近负责的一些项目开发,都用到了微信支付(微信公众号支付.微信H5支付.微信扫码支付.APP微信支付).在开发的过程中,在调试支付的过程中,或多或少都遇到了一些问题,今天总结下,分享,留存. 先说注意 ...

  7. asp.net core 微信H5支付(扫码支付,H5支付,公众号支付,app支付)之2

    上一篇说到微信扫码支付,今天来分享下微信H5支付,适用场景为手机端非微信浏览器调用微信H5支付惊醒网站支付业务处理.申请开通微信H5支付工作不多做介绍,直接上代码. 首先是微信支付业务类(WxPayS ...

  8. 微信支付-微信公众号支付,微信H5支付,微信APP支付,微信扫码支付

    在支付前,如果使用第三方MVC框架,则使用重写模式,服务器也需要配置该项 if (!-e $request_filename){ rewrite ^/(.*)$ /index.php/$ last; ...

  9. 别错过了,130+个微信小程序源码 “限时分享“

    ​里面有130+款微信小程序源码和效果图,我只放了其中几款小程序的截图,具体请看下方图片 ​ ​ ​ ​ ​ ​ ​ ​ 仿网易云音乐小程序源码 链接:https://pan.baidu.com/s/ ...

随机推荐

  1. CGI,FastCGI,PHP-CGI与PHP-FPM区别详解【转】

    CGI CGI全称是“公共网关接口”(Common Gateway Interface),HTTP服务器与你的或其它机器上的程序进行“交谈”的一种工具,其程序须运行在网络服务器上. CGI可以用任何一 ...

  2. smarty半小时快速上手教程

    一:smarty的程序设计部分: 在smarty的模板设计部分我简单的把smarty在模板中的一些常用设置做了简单的介绍,这一节主要来介绍一下如何在smarty中开始我们程序设计.下载Smarty文件 ...

  3. Vue 根组件,局部,全局组件 | 组件间通信,案例组件化

    一 组件 <div id="app"> <h1>{{ msg }}</h1> </div> <script src=" ...

  4. MySQL MyISAM引擎转换为InnoDB操作记录

    进入mysql命令行模式: # mysql -uroot -ppwd 1.查看mysql提供什么存储引擎: mysql> show engines; 2.查看mysql当前提供的默认存储引擎: ...

  5. LabVIEW中下拉列表和枚举的区别(两点)

    第一:如图,在表示法上,下拉列表表示的数据范围要大,枚举只能是U32,U16, U8 第二:在vi的动态调用过程中,常用下拉列表,因为枚举控件不能动态的增加或者减少项目,而下拉列表则可以.

  6. python 基础 three day

    本节主要内容: 一. python基本数据类型有哪些? 1. int  ==>  整数.主要用来进行数学计算. 2. str ==> 字符串,可以保存少量数据并进行相应的操作 3. boo ...

  7. 【原创】大数据基础之Logstash(1)简介、安装、使用

    Logstash 6.6.2 官方:https://www.elastic.co/products/logstash 一 简介 Centralize, Transform & Stash Yo ...

  8. centos6.5 有趣但是没有用的linux命令

    小火车 get http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm rpm -ivh epel-rele ...

  9. 终于,我还是下决心学Java后台了

    我没有什么本事,人也丑,也不会忽悠,只能硬着头皮学习了.最近计划学习Java后台,因为最近接了私活的问题,好多都要Java后台和前端一起做.平常我在做什么,当然是忙着赚钱了 除了敲代码,你还有什么副业 ...

  10. JAVA框架之Hibernate框架的学习步骤

    首先介绍一下Java三大框架的关系 以CRM项目即客户关系管理项目示例 hibernate框架的学习路线: 1.学习框架入门,自己搭建框架,完成增删改查的操作 2.学习一级缓存,事物管理和基本查询 3 ...