Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Pay.php 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2019-2-20
  12. */
  13. namespace app\admin\model;
  14. use think\Model;
  15. use think\Config;
  16. use think\Db;
  17. /**
  18. * 会员
  19. */
  20. class Pay extends Model
  21. {
  22. private $key = ''; // key密钥
  23. //初始化
  24. protected function initialize()
  25. {
  26. // 需要调用`Model`的`initialize`方法
  27. parent::initialize();
  28. }
  29. /*
  30. * 微信二维码支付
  31. * @params string $openid : 用户的openid
  32. * @params string $out_trade_no : 商户订单号
  33. * @params number $total_fee : 订单金额,单位分
  34. * return string $code_url : 二维码URL链接
  35. */
  36. public function payForQrcode($wechat,$out_trade_no='',$total_fee='',$body="充值",$attach="微信扫码支付")
  37. {
  38. $this->key = $wechat['key'];
  39. // 支付备注
  40. $body = "支付";
  41. if (1 == config('global.opencodetype')) {
  42. $web_name = tpCache('web.web_name');
  43. $web_name = !empty($web_name) ? "[{$web_name}]" : "";
  44. $body = $web_name.$body;
  45. }
  46. //支付数据
  47. $out_trade_no = getTime();
  48. $data['out_trade_no'] = $out_trade_no;
  49. $data['total_fee'] = '1';
  50. $data['spbill_create_ip'] = $this->get_client_ip();
  51. $data['attach'] = $attach;
  52. $data['body'] = $body."订单号:{$out_trade_no}";
  53. $data['appid'] = $wechat['appid'];
  54. $data['mch_id'] = $wechat['mchid'];
  55. $data['nonce_str'] = getTime();
  56. $data['trade_type'] = "NATIVE";
  57. $data['notify_url'] = url('user/Pay/pay_deal_with');
  58. $sign = $this->getParam($data);
  59. $dataXML = "<xml>
  60. <appid>".$data['appid']."</appid>
  61. <attach>".$data['attach']."</attach>
  62. <body>".$data['body']."</body>
  63. <mch_id>".$data['mch_id']."</mch_id>
  64. <nonce_str>".$data['nonce_str']."</nonce_str>
  65. <notify_url>".$data['notify_url']."</notify_url>
  66. <out_trade_no>".$data['out_trade_no']."</out_trade_no>
  67. <spbill_create_ip>".$data['spbill_create_ip']."</spbill_create_ip>
  68. <total_fee>".$data['total_fee']."</total_fee>
  69. <trade_type>".$data['trade_type']."</trade_type>
  70. <sign>".$sign."</sign>
  71. </xml>";
  72. $url = 'https://api.mch.weixin.qq.com/pay/unifiedorder';
  73. $result = $this->https_post($url,$dataXML);
  74. $ret = $this->xmlToArray($result);
  75. if($ret['return_code'] == 'SUCCESS' && $ret['return_msg'] == 'OK') {
  76. return $ret['code_url'];
  77. } else {
  78. return $ret;
  79. }
  80. }
  81. // 获取客户端IP
  82. private function get_client_ip() {
  83. if(getenv('HTTP_CLIENT_IP') && strcasecmp(getenv('HTTP_CLIENT_IP'), 'unknown')) {
  84. $ip = getenv('HTTP_CLIENT_IP');
  85. } elseif(getenv('HTTP_X_FORWARDED_FOR') && strcasecmp(getenv('HTTP_X_FORWARDED_FOR'), 'unknown')) {
  86. $ip = getenv('HTTP_X_FORWARDED_FOR');
  87. } elseif(getenv('REMOTE_ADDR') && strcasecmp(getenv('REMOTE_ADDR'), 'unknown')) {
  88. $ip = getenv('REMOTE_ADDR');
  89. } elseif(isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && strcasecmp($_SERVER['REMOTE_ADDR'], 'unknown')) {
  90. $ip = $_SERVER['REMOTE_ADDR'];
  91. }
  92. return preg_match ( '/[\d\.]{7,15}/', $ip, $matches ) ? $matches [0] : '';
  93. }
  94. //对参数排序,生成MD5加密签名
  95. private function getParam($paramArray, $isencode=false)
  96. {
  97. $paramStr = '';
  98. ksort($paramArray);
  99. $i = 0;
  100. foreach ($paramArray as $key => $value)
  101. {
  102. if ($key == 'Signature'){
  103. continue;
  104. }
  105. if ($i == 0){
  106. $paramStr .= '';
  107. }else{
  108. $paramStr .= '&';
  109. }
  110. $paramStr .= $key . '=' . ($isencode ? urlencode($value) : $value);
  111. ++$i;
  112. }
  113. $stringSignTemp=$paramStr."&key=".$this->key;
  114. $sign=strtoupper(md5($stringSignTemp));
  115. return $sign;
  116. }
  117. //POST提交数据
  118. private function https_post($url,$data)
  119. {
  120. $ch = curl_init ();
  121. curl_setopt ( $ch, CURLOPT_URL, $url );
  122. curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "POST" );
  123. curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
  124. curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, FALSE );
  125. // curl_setopt ( $ch, CURLOPT_FOLLOWLOCATION, 1 );
  126. curl_setopt ( $ch, CURLOPT_AUTOREFERER, 1 );
  127. curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
  128. curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
  129. $result = curl_exec($ch);
  130. if (curl_errno($ch)) {
  131. return 'Errno: '.curl_error($ch);
  132. }
  133. curl_close($ch);
  134. return $result;
  135. }
  136. /*
  137. * XML转array
  138. * @params xml $xml : xml 数据
  139. * return array $data : 转义后的array数组
  140. */
  141. private function xmlToArray($xml)
  142. {
  143. libxml_disable_entity_loader(true);
  144. $xmlstring = (array)simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);
  145. $val = json_decode(json_encode($xmlstring),true);
  146. return $val;
  147. }
  148. }