Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  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\user\model;
  14. use think\Model;
  15. use think\Config;
  16. use think\Db;
  17. /**
  18. * 会员
  19. */
  20. class Pay extends Model
  21. {
  22. private $home_lang = 'cn';
  23. private $key = ''; // key密钥
  24. //初始化
  25. protected function initialize()
  26. {
  27. // 需要调用`Model`的`initialize`方法
  28. parent::initialize();
  29. $this->home_lang = get_home_lang();
  30. }
  31. /**
  32. * 虚拟网盘支付后自动发货,收货
  33. * @param array $where =[ 'users_id'=>'','lang'=> $this->home_lang,'order_id'=> ''] 用户id 语言 订单id
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @throws \think\exception\DbException
  37. */
  38. public function afterVirtualProductPay($orderData = [])
  39. {
  40. //判断是否为需要自动发货的虚拟商品 archives表prom_type=2,3
  41. $details_data = \think\Db::name('shop_order_details')->where([
  42. 'order_id' => $orderData['order_id'],
  43. 'users_id' => $orderData['users_id'],
  44. ])->select();
  45. $autoSendGoods = true;//多商品合并的订单,需要先判断是否都是需要自动发货的
  46. foreach ($details_data as &$key) {
  47. if ($key['prom_type'] == 0 || $key['prom_type'] == 1 || $key['prom_type'] == 4) {
  48. $autoSendGoods = false;
  49. break; //只要存在一个需要手动发货的就结束循环,并且不进入自动发货
  50. }
  51. }
  52. //直接发货
  53. if ($autoSendGoods) {
  54. //自动确认收货
  55. $times = getTime();
  56. $confirmOrder = \think\Db::name('shop_order')->where([
  57. 'order_id' => $orderData['order_id'],
  58. 'users_id' => $orderData['users_id'],
  59. ])->update([
  60. 'order_status' => 3,
  61. 'express_time' => $times,
  62. 'confirm_time' => $times,
  63. 'update_time' => $times,
  64. // 'virtual_delivery' => $virtual_delivery, //注释,每次取出的时候再拼接
  65. ]);
  66. if (false !== $confirmOrder) {
  67. AddOrderAction($orderData['order_id'], 0, session('admin_id'), 2, 1, 1, '虚拟商品自动发货成功!', '发货成功');
  68. AddOrderAction($orderData['order_id'], 0, session('admin_id'), 3, 1, 1, '虚拟商品自动收货成功!', '确认订单已收货');
  69. if (function_exists('diy_push_buy_cloudminipro')) diy_push_buy_cloudminipro($orderData);
  70. }
  71. }
  72. return $autoSendGoods;
  73. }
  74. // 处理充值订单,超过指定时间修改为已取消订单,针对未付款订单
  75. public function UpdateOrderData($users_id)
  76. {
  77. $time = getTime() - Config::get('global.get_order_validity');
  78. $where = array(
  79. 'users_id' => $users_id,
  80. 'status' => 1,
  81. 'add_time' => array('<', $time),
  82. );
  83. $data = [
  84. 'status' => 4, // 订单取消
  85. 'update_time' => getTime(),
  86. ];
  87. Db::name('users_money')->where($where)->update($data);
  88. }
  89. /*
  90. * 微信端H5支付,手机微信直接调起微信支付
  91. * @params string $openid : 用户的openid
  92. * @params string $out_trade_no : 商户订单号
  93. * @params number $total_fee : 订单金额,单位分
  94. * return string $ReturnData : 微信支付所需参数数组
  95. */
  96. public function getWechatPay($openid, $out_trade_no, $total_fee, $PayInfo, $is_applets = 0, $transaction_type = 2)
  97. {
  98. if (isMobile() && isWeixin()) {
  99. $thirdparty = Db::name('users')->where(['users_id'=>session('users_id')])->getField('thirdparty');
  100. if (0 === intval($thirdparty)) $openid = model('ShopPublicHandle')->weChatauthorizeCookie(session('users_id'));
  101. }
  102. // 获取微信配置信息
  103. $where = [
  104. 'pay_id' => 1,
  105. 'pay_mark' => 'wechat'
  106. ];
  107. $pay_wechat_config = Db::name('pay_api_config')->where($where)->getField('pay_info');
  108. if (empty($pay_wechat_config)) {
  109. $pay_wechat_config = getUsersConfigData('pay.pay_wechat_config');
  110. if (empty($pay_wechat_config)) return false;
  111. }
  112. $wechat = unserialize($pay_wechat_config);
  113. // 支付密钥
  114. $this->key = $wechat['key'];
  115. // 小程序配置
  116. if (1 === $is_applets) {
  117. $MiniproValue = Db::name('weapp_minipro0002')->where('type', 'minipro')->getField('value');
  118. if (empty($MiniproValue)) return false;
  119. $MiniproValue = !empty($MiniproValue) ? json_decode($MiniproValue, true) : [];
  120. $wechat['appid'] = $MiniproValue['appId'];
  121. // 支付备注
  122. $body = "小程序支付";
  123. } else {
  124. // 支付备注
  125. $body = "微信支付";
  126. }
  127. // 支付备注
  128. if (1 == config('global.opencodetype')) {
  129. $web_name = tpCache('web.web_name');
  130. $web_name = !empty($web_name) ? "[{$web_name}]" : "";
  131. $body = $web_name . $body;
  132. }
  133. //支付数据
  134. $data['body'] = $body . "订单号:{$out_trade_no}";
  135. $data['attach'] = "wechat|,|is_notify|,|" . $transaction_type . '|,|' . session('users_id');
  136. $data['out_trade_no'] = $out_trade_no;
  137. $data['total_fee'] = $total_fee * 100;
  138. $data['nonce_str'] = getTime();
  139. $data['spbill_create_ip'] = $this->get_client_ip();
  140. $data['appid'] = $wechat['appid'];
  141. $data['mch_id'] = $wechat['mchid'];
  142. $data['trade_type'] = "JSAPI";
  143. $data['notify_url'] = request()->domain() . ROOT_DIR . '/index.php'; // 异步地址
  144. $data['openid'] = $openid;
  145. $sign = $this->getParam($data);
  146. $dataXML = "<xml>
  147. <appid>".$data['appid']."</appid>
  148. <attach>".$data['attach']."</attach>
  149. <body>".$data['body']."</body>
  150. <mch_id>".$data['mch_id']."</mch_id>
  151. <nonce_str>".$data['nonce_str']."</nonce_str>
  152. <notify_url>".$data['notify_url']."</notify_url>
  153. <openid>".$data['openid']."</openid>
  154. <out_trade_no>".$data['out_trade_no']."</out_trade_no>
  155. <spbill_create_ip>".$data['spbill_create_ip']."</spbill_create_ip>
  156. <total_fee>".$data['total_fee']."</total_fee>
  157. <trade_type>".$data['trade_type']."</trade_type>
  158. <sign>".$sign."</sign>
  159. </xml>";
  160. $url = 'https://api.mch.weixin.qq.com/pay/unifiedorder';
  161. $result = $this->https_post($url,$dataXML);
  162. $ret = $this->xmlToArray($result);
  163. if (isset($ret['return_code']) && $ret['return_code'] == 'SUCCESS' && $ret['return_msg'] == 'OK') {
  164. $timeStamp = getTime();
  165. $ReturnData = [
  166. 'appId' => $wechat['appid'],
  167. 'timeStamp' => "$timeStamp",
  168. 'nonceStr' => $this->GetRandomString(12),
  169. 'package' => 'prepay_id='.$ret['prepay_id'],
  170. 'signType' => 'MD5',
  171. ];
  172. $ReturnSign = $this->getParam($ReturnData);
  173. $ReturnData['paySign'] = $ReturnSign;
  174. return $ReturnData;
  175. } else if (isset($ret['return_code']) && $ret['return_code'] == 'FAIL') {
  176. return $ret;
  177. } else {
  178. return $ret;
  179. }
  180. }
  181. /*
  182. * 微信H5支付,手机浏览器调起微信支付
  183. * @params string $openid : 用户的openid
  184. * @params string $out_trade_no : 商户订单号
  185. * @params number $total_fee : 订单金额,单位分
  186. * return string $mweb_url : 二维码URL链接
  187. */
  188. public function getMobilePay($out_trade_no,$total_fee,$body="支付",$attach="手机浏览器微信H5支付")
  189. {
  190. // 获取微信配置信息
  191. $where = [
  192. 'pay_id' => 1,
  193. 'pay_mark' => 'wechat'
  194. ];
  195. $pay_wechat_config = Db::name('pay_api_config')->where($where)->getField('pay_info');
  196. if (empty($pay_wechat_config)) {
  197. $pay_wechat_config = getUsersConfigData('pay.pay_wechat_config');
  198. if (empty($pay_wechat_config)) return false;
  199. }
  200. $wechat = unserialize($pay_wechat_config);
  201. $this->key = $wechat['key'];
  202. //支付数据
  203. $data['out_trade_no'] = $out_trade_no;
  204. $data['total_fee'] = $total_fee * 100;
  205. $data['spbill_create_ip'] = $this->get_client_ip();
  206. $data['attach'] = $attach;
  207. $data['body'] = $body;
  208. $data['appid'] = $wechat['appid'];
  209. $data['mch_id'] = $wechat['mchid'];
  210. $data['nonce_str'] = getTime();
  211. $data['trade_type'] = "MWEB";
  212. $data['scene_info'] = '{"h5_info":{"type":"Wap","wap_url":'.url("users/Pay/mobile_pay_notify").',"wap_name":"支付"}}';
  213. $data['notify_url'] = url('users/Pay/mobile_pay_notify');
  214. $sign = $this->getParam($data);
  215. $dataXML = "<xml>
  216. <appid>".$data['appid']."</appid>
  217. <attach>".$data['attach']."</attach>
  218. <body>".$data['body']."</body>
  219. <mch_id>".$data['mch_id']."</mch_id>
  220. <nonce_str>".$data['nonce_str']."</nonce_str>
  221. <notify_url>".$data['notify_url']."</notify_url>
  222. <out_trade_no>".$data['out_trade_no']."</out_trade_no>
  223. <scene_info>".$data['scene_info']."</scene_info>
  224. <spbill_create_ip>".$data['spbill_create_ip']."</spbill_create_ip>
  225. <total_fee>".$data['total_fee']."</total_fee>
  226. <trade_type>".$data['trade_type']."</trade_type>
  227. <sign>".$sign."</sign>
  228. </xml>";
  229. $url = 'https://api.mch.weixin.qq.com/pay/unifiedorder';
  230. $result = $this->https_post($url,$dataXML);
  231. $ret = $this->xmlToArray($result);
  232. if(isset($ret['return_code']) && $ret['return_code'] == 'SUCCESS' && $ret['return_msg'] == 'OK') {
  233. if (!empty($ret['err_code'])) {
  234. return $ret['err_code_des'];
  235. }
  236. return $ret['mweb_url'];
  237. } else {
  238. return $ret;
  239. }
  240. }
  241. /*
  242. * 微信二维码支付
  243. * @params string $openid : 用户的openid
  244. * @params string $out_trade_no : 商户订单号
  245. * @params number $total_fee : 订单金额,单位分
  246. * return string $code_url : 二维码URL链接
  247. */
  248. public function payForQrcode($out_trade_no,$total_fee,$body="支付",$attach="微信扫码支付")
  249. {
  250. // 获取微信配置信息
  251. $where = [
  252. 'pay_id' => 1,
  253. 'pay_mark' => 'wechat'
  254. ];
  255. $pay_wechat_config = Db::name('pay_api_config')->where($where)->getField('pay_info');
  256. if (empty($pay_wechat_config)) {
  257. $pay_wechat_config = getUsersConfigData('pay.pay_wechat_config');
  258. if (empty($pay_wechat_config)) return false;
  259. }
  260. $wechat = unserialize($pay_wechat_config);
  261. $this->key = $wechat['key'];
  262. // 支付备注
  263. if (1 == config('global.opencodetype')) {
  264. $web_name = tpCache('web.web_name');
  265. $web_name = !empty($web_name) ? "[{$web_name}]" : "";
  266. $body = $web_name.$body;
  267. }
  268. //支付数据
  269. $data['out_trade_no'] = $out_trade_no;
  270. $data['total_fee'] = $total_fee * 100;
  271. $data['spbill_create_ip'] = $this->get_client_ip();
  272. $data['attach'] = $attach;
  273. $data['body'] = $body."订单号:{$out_trade_no}";
  274. $data['appid'] = $wechat['appid'];
  275. $data['mch_id'] = $wechat['mchid'];
  276. $data['nonce_str'] = getTime();
  277. $data['trade_type'] = "NATIVE";
  278. $data['notify_url'] = url('user/Pay/pay_deal_with');
  279. $sign = $this->getParam($data);
  280. $dataXML = "<xml>
  281. <appid>".$data['appid']."</appid>
  282. <attach>".$data['attach']."</attach>
  283. <body>".$data['body']."</body>
  284. <mch_id>".$data['mch_id']."</mch_id>
  285. <nonce_str>".$data['nonce_str']."</nonce_str>
  286. <notify_url>".$data['notify_url']."</notify_url>
  287. <out_trade_no>".$data['out_trade_no']."</out_trade_no>
  288. <spbill_create_ip>".$data['spbill_create_ip']."</spbill_create_ip>
  289. <total_fee>".$data['total_fee']."</total_fee>
  290. <trade_type>".$data['trade_type']."</trade_type>
  291. <sign>".$sign."</sign>
  292. </xml>";
  293. $url = 'https://api.mch.weixin.qq.com/pay/unifiedorder';
  294. $result = $this->https_post($url,$dataXML);
  295. $ret = $this->xmlToArray($result);
  296. if(isset($ret['return_code']) && $ret['return_code'] == 'SUCCESS' && $ret['return_msg'] == 'OK') {
  297. return $ret['code_url'];
  298. } else {
  299. return $ret;
  300. }
  301. }
  302. // 获取客户端IP
  303. private function get_client_ip()
  304. {
  305. if (getenv('HTTP_CLIENT_IP') && strcasecmp(getenv('HTTP_CLIENT_IP'), 'unknown')) {
  306. $ip = getenv('HTTP_CLIENT_IP');
  307. } elseif (getenv('HTTP_X_FORWARDED_FOR') && strcasecmp(getenv('HTTP_X_FORWARDED_FOR'), 'unknown')) {
  308. $ip = getenv('HTTP_X_FORWARDED_FOR');
  309. } elseif (getenv('REMOTE_ADDR') && strcasecmp(getenv('REMOTE_ADDR'), 'unknown')) {
  310. $ip = getenv('REMOTE_ADDR');
  311. } elseif (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && strcasecmp($_SERVER['REMOTE_ADDR'], 'unknown')) {
  312. $ip = $_SERVER['REMOTE_ADDR'];
  313. }
  314. return preg_match('/[\d\.]{7,15}/', $ip, $matches) ? $matches [0] : '';
  315. }
  316. //对参数排序,生成MD5加密签名
  317. private function getParam($paramArray, $isencode=false)
  318. {
  319. $paramStr = '';
  320. ksort($paramArray);
  321. $i = 0;
  322. foreach ($paramArray as $key => $value) {
  323. if ($key == 'Signature') {
  324. continue;
  325. }
  326. if ($i == 0) {
  327. $paramStr .= '';
  328. } else {
  329. $paramStr .= '&';
  330. }
  331. $paramStr .= $key . '=' . ($isencode ? urlencode($value) : $value);
  332. ++$i;
  333. }
  334. $stringSignTemp=$paramStr."&key=".$this->key;
  335. $sign=strtoupper(md5($stringSignTemp));
  336. return $sign;
  337. }
  338. //POST提交数据
  339. private function https_post($url,$data)
  340. {
  341. $ch = curl_init ();
  342. curl_setopt ( $ch, CURLOPT_URL, $url );
  343. curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "POST" );
  344. curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
  345. curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, FALSE );
  346. // curl_setopt ( $ch, CURLOPT_FOLLOWLOCATION, 1 );
  347. curl_setopt ( $ch, CURLOPT_AUTOREFERER, 1 );
  348. curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
  349. curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
  350. $result = curl_exec($ch);
  351. if (curl_errno($ch)) {
  352. return 'Errno: '.curl_error($ch);
  353. }
  354. curl_close($ch);
  355. return $result;
  356. }
  357. /*
  358. * XML转array
  359. * @params xml $xml : xml 数据
  360. * return array $data : 转义后的array数组
  361. */
  362. private function xmlToArray($xml)
  363. {
  364. libxml_disable_entity_loader(true);
  365. $xmlstring = (array)simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);
  366. $val = json_decode(json_encode($xmlstring),true);
  367. return $val;
  368. }
  369. /*
  370. * 支付宝新版支付,生成支付链接方法。
  371. * @params string $data : 订单表数据,必须传入
  372. * return string $alipay_url : 支付宝支付链接
  373. */
  374. public function getNewAliPayPayUrl($data)
  375. {
  376. // 引入SDK文件
  377. vendor('alipay.pagepay.service.AlipayTradeService');
  378. vendor('alipay.pagepay.buildermodel.AlipayTradePagePayContentBuilder');
  379. // 获取支付宝配置信息
  380. $where = [
  381. 'pay_id' => 2,
  382. 'pay_mark' => 'alipay'
  383. ];
  384. $PayInfo = Db::name('pay_api_config')->where($where)->getField('pay_info');
  385. if (empty($PayInfo)) return false;
  386. $alipay = unserialize($PayInfo);
  387. $type = $data['transaction_type'];
  388. // 参数拼装
  389. $config['app_id'] = $alipay['app_id'];
  390. $config['merchant_private_key'] = $alipay['merchant_private_key'];
  391. $config['transaction_type'] = $type;
  392. // 异步地址
  393. $notify_url = request()->domain().ROOT_DIR.'/index.php?transaction_type='.$type.'&is_notify=1';
  394. $config['notify_url'] = $notify_url;
  395. // 同步地址
  396. $return_url = url('user/Pay/alipay_return', ['transaction_type'=>$type,'is_notify'=>2], true, true);
  397. $config['return_url'] = $return_url;
  398. $config['charset'] = 'UTF-8';
  399. $config['sign_type'] = 'RSA2';
  400. $config['gatewayUrl'] = 'https://openapi.alipay.com/gateway.do';
  401. $config['alipay_public_key'] = $alipay['alipay_public_key'];
  402. // 实例化
  403. $payRequestBuilder = new \AlipayTradePagePayContentBuilder;
  404. $aop = new \AlipayTradeService($config);
  405. $out_trade_no = trim($data['unified_number']);//商户订单号,商户网站订单系统中唯一订单号,必填
  406. $subject = '支付';//订单名称,必填
  407. $total_amount = trim($data['unified_amount']);//付款金额,必填
  408. $body = '支付宝支付';//商品描述,可空
  409. if (1 == config('global.opencodetype')) {
  410. $web_name = tpCache('web.web_name');
  411. $web_name = !empty($web_name) ? "[{$web_name}]" : "";
  412. $subject = $web_name.$subject;
  413. $body = $web_name.$body;
  414. }
  415. //构造参数
  416. $payRequestBuilder->setBody($body."订单号:{$out_trade_no}");
  417. $payRequestBuilder->setSubject($subject."订单号:{$out_trade_no}");
  418. $payRequestBuilder->setTotalAmount($total_amount);
  419. $payRequestBuilder->setOutTradeNo($out_trade_no);
  420. // 调用SDK进行支付宝支付
  421. $response = $aop->pagePay($payRequestBuilder,$config['return_url'],$config['notify_url']);
  422. }
  423. /*
  424. * 支付宝旧版支付,生成支付链接方法。
  425. * @params string $data : 订单表数据,必须传入
  426. * @params string $alipay : 支付宝配置信息,通过 getUsersConfigData 方法调用数据
  427. * return string $alipay_url : 支付宝支付链接
  428. */
  429. public function getOldAliPayPayUrl($data, $alipay)
  430. {
  431. // 重要参数,支付宝配置信息
  432. if (empty($alipay)) {
  433. $where = [
  434. 'pay_id' => 2,
  435. 'pay_mark' => 'alipay'
  436. ];
  437. $alipay = Db::name('pay_api_config')->where($where)->getField('pay_info');
  438. if (empty($alipay)) {
  439. $alipay = getUsersConfigData('pay.pay_alipay_config');
  440. if (empty($alipay)) return false;
  441. }
  442. $alipay = unserialize($alipay);
  443. }
  444. // 参数设置
  445. $order['out_trade_no'] = $data['unified_number']; //订单号
  446. $order['price'] = $data['unified_amount']; //订单金额
  447. $charset = 'utf-8'; //编码格式
  448. $real_method = '2'; //调用方式
  449. $agent = 'C4335994340215837114'; //代理机构
  450. $seller_email = $alipay['account'];//支付宝用户账号
  451. $security_check_code = $alipay['code']; //交易安全校验码
  452. $partner = $alipay['id']; //合作者身份ID
  453. switch ($real_method){
  454. case '0':
  455. $service = 'trade_create_by_buyer';
  456. break;
  457. case '1':
  458. $service = 'create_partner_trade_by_buyer';
  459. break;
  460. case '2':
  461. $service = 'create_direct_pay_by_user';
  462. break;
  463. }
  464. $type = $data['transaction_type']; //自定义,用于验证
  465. // 异步地址
  466. $notify_url = request()->domain().ROOT_DIR.'/index.php?transaction_type='.$type.'&is_notify=1';
  467. // 同步地址
  468. $return_url = url('user/Pay/alipay_return', ['transaction_type'=>$type,'is_notify'=>2], true, true);
  469. // 参数拼装
  470. $parameter = array(
  471. 'agent' => $agent,
  472. 'service' => $service,
  473. //合作者ID
  474. 'partner' => $partner,
  475. '_input_charset' => $charset,
  476. 'notify_url' => $notify_url,
  477. 'return_url' => $return_url,
  478. /* 业务参数 */
  479. 'subject' => "支付订单号:".$order['out_trade_no'],
  480. 'out_trade_no' => $order['out_trade_no'],
  481. 'price' => $order['price'],
  482. 'quantity' => 1,
  483. 'payment_type' => 1,
  484. /* 物流参数 */
  485. 'logistics_type' => 'EXPRESS',
  486. 'logistics_fee' => 0,
  487. 'logistics_payment' => 'BUYER_PAY_AFTER_RECEIVE',
  488. /* 买卖双方信息 */
  489. 'seller_email' => $seller_email,
  490. );
  491. ksort($parameter);
  492. reset($parameter);
  493. $param = '';
  494. $sign = '';
  495. foreach ($parameter AS $key => $val) {
  496. $param .= "$key=" . urlencode($val) . "&";
  497. $sign .= "$key=$val&";
  498. }
  499. $param = substr($param, 0, -1);
  500. $sign = substr($sign, 0, -1) . $security_check_code;
  501. $alipay_url = 'https://www.alipay.com/cooperate/gateway.do?' . $param . '&sign=' . MD5($sign) . '&sign_type=MD5';
  502. return $alipay_url;
  503. }
  504. // 获取随机字符串
  505. // 长度 length
  506. // 结果 str
  507. public function GetRandomString($length)
  508. {
  509. $chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
  510. $str = "";
  511. for ($i = 0; $i < $length; $i++) {
  512. $str .= substr($chars, mt_rand(0, strlen($chars) - 1), 1);
  513. }
  514. return $str;
  515. }
  516. }