common.php 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380
  1. <?php
  2. use app\common\library\QRcode;
  3. use think\Db;
  4. use OSS\OssClient;
  5. function IntToChr($index, $start = 65) {
  6. $str = '';
  7. if (floor($index / 26) > 0) {
  8. $str .= IntToChr(floor($index / 26)-1);
  9. }
  10. return $str . chr($index % 26 + $start);
  11. }
  12. /**
  13. * 秒转换为天
  14. */
  15. function get_stay_time($remain_time, $is_hour = 1, $is_minutes = 1)
  16. {
  17. $day = floor($remain_time / (3600*24));
  18. $day = $day > 0 ? $day.'天' : '';
  19. $hour = floor(($remain_time % (3600*24)) / 3600);
  20. $hour = $hour > 0 ? $hour.'小时' : '';
  21. if($is_hour && $is_minutes) {
  22. $minutes = floor((($remain_time % (3600*24)) % 3600) / 60);
  23. $minutes = $minutes > 0 ? $minutes.'分钟' : '';
  24. return $day.$hour.$minutes;
  25. }
  26. if($hour) {
  27. return $day.$hour;
  28. }
  29. return $day;
  30. }
  31. //获取全图片地址 $image_data
  32. function image_path($image_data){
  33. if(empty($image_data)){
  34. return $image_data;
  35. }
  36. if (strpos($image_data,'|')!==false){
  37. $image_res = explode('|',$image_data);
  38. }elseif(strpos($image_data,',')!==false){
  39. $image_res = explode(',',$image_data);
  40. }else{
  41. $image_res = array($image_data);
  42. }
  43. return $image_res;
  44. }
  45. // 获取模板区域
  46. function get_city_area()
  47. {
  48. $field=['id','pid','name'];
  49. $list=Db::table('store_area')->where('pid',0)->field($field)->select();
  50. foreach ($list as $k=>&$v){
  51. $v['children']= Db::table('store_area')->where('pid',$v['id'])->field($field)->select();
  52. }
  53. return $list;
  54. }
  55. function http_curl($url,$type='get',$res='json',$arr=''){
  56. $headers = array();
  57. //根据API的要求,定义相对应的Content-Type
  58. array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8;application/json");
  59. $curl = curl_init();
  60. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $type);
  61. curl_setopt($curl, CURLOPT_URL, $url);
  62. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  63. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  64. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  65. curl_setopt($curl, CURLOPT_HEADER, false);
  66. $output = curl_exec($curl);
  67. curl_close($curl);
  68. if($res=='json'){
  69. if($output === false){
  70. //请求失败,返回错误信息
  71. return curl_error($curl);
  72. }else{
  73. //请求成功,返回信息
  74. return json_decode($output,true);
  75. }
  76. }
  77. }
  78. // 获取物流信息
  79. function get_delivery($send_no = 'JD0053309649641',$express_code=''){
  80. error_reporting(E_ALL || ~E_NOTICE);
  81. $AppKey = 204008273;
  82. $AppSecret ='t9PavvfCeK5v2XidwyK5pWDp8b0hzMq4';
  83. $AppCode ='47f640e3529d43e28365311a530db2b7';//开通服务后 买家中心-查看AppCode
  84. $host = "https://wuliu.market.alicloudapi.com";//api访问链接
  85. $path = "/kdi";//API访问后缀
  86. $method = "GET";
  87. $body ='';
  88. $headers = array();
  89. array_push($headers, "Authorization:APPCODE " . $AppCode);
  90. $querys = "no={$send_no}&type={$express_code}"; //参数写在这里
  91. $url = $host . $path . "?" . $querys;
  92. $curl = curl_init();
  93. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  94. curl_setopt($curl, CURLOPT_URL, $url);
  95. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  96. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  97. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  98. curl_setopt($curl, CURLOPT_HEADER, true);
  99. if (1 == strpos("$" . $host, "https://")) {
  100. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  101. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  102. }
  103. $out_put = curl_exec($curl);
  104. $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
  105. list($header, $body) = explode("\r\n\r\n", $out_put, 2);
  106. if ($httpCode == 200) {
  107. return json_decode($body,true)['result'];
  108. } else {
  109. return [];
  110. }
  111. }
  112. // 元石日志
  113. function crystal_log($user_id,$crystal,$desc,$type,$rel_id=0)
  114. {
  115. $log_data = [
  116. 'user_id' => $user_id,
  117. 'create_at' => date('Y-m-d H:i:s'),
  118. 'crystal' => $crystal,
  119. 'desc' => $desc,
  120. 'type' => $type,
  121. 'rel_id' => $rel_id,
  122. ];
  123. Db::table('crystal_info')->insert($log_data);
  124. }
  125. /**
  126. * 判断是否为合法的身份证号码
  127. * @param $mobile
  128. * @return int
  129. */
  130. function isCreditNo($vStr){
  131. $vCity = array(
  132. '11','12','13','14','15','21','22',
  133. '23','31','32','33','34','35','36',
  134. '37','41','42','43','44','45','46',
  135. '50','51','52','53','54','61','62',
  136. '63','64','65','71','81','82','91'
  137. );
  138. if (!preg_match('/^([\d]{17}[xX\d]|[\d]{15})$/', $vStr)) return false;
  139. if (!in_array(substr($vStr, 0, 2), $vCity)) return false;
  140. $vStr = preg_replace('/[xX]$/i', 'a', $vStr);
  141. $vLength = strlen($vStr);
  142. if ($vLength == 18) {
  143. $vBirthday = substr($vStr, 6, 4) . '-' . substr($vStr, 10, 2) . '-' . substr($vStr, 12, 2);
  144. } else {
  145. $vBirthday = '19' . substr($vStr, 6, 2) . '-' . substr($vStr, 8, 2) . '-' . substr($vStr, 10, 2);
  146. }
  147. if (date('Y-m-d', strtotime($vBirthday)) != $vBirthday) return false;
  148. if ($vLength == 18) {
  149. $vSum = 0;
  150. for ($i = 17 ; $i >= 0 ; $i--) {
  151. $vSubStr = substr($vStr, 17 - $i, 1);
  152. $vSum += (pow(2, $i) % 11) * (($vSubStr == 'a') ? 10 : intval($vSubStr , 11));
  153. }
  154. if($vSum % 11 != 1) return false;
  155. }
  156. return true;
  157. }
  158. //实名认证(云盾身份认证(身份证二要素核验)
  159. function identifyCertification($id_card,$name){
  160. $host = "https://safrvcert.market.alicloudapi.com";
  161. $path = "/safrv_2meta_id_name/";
  162. $method = "GET";
  163. $appcode = "95ec5cd8c54d4ced9220caebdaa5d750";
  164. $headers = array();
  165. array_push($headers, "Authorization:APPCODE " . $appcode);
  166. $querys = "__userId=__userId&identifyNum=$id_card&userName=$name&verifyKey=verifyKey";
  167. $bodys = "";
  168. $url = $host . $path . "?" . $querys;
  169. $curl = curl_init();
  170. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  171. curl_setopt($curl, CURLOPT_URL, $url);
  172. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  173. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  174. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  175. curl_setopt($curl, CURLOPT_HEADER, false);
  176. if (1 == strpos("$".$host, "https://"))
  177. {
  178. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  179. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  180. }
  181. curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
  182. $res = curl_exec($curl);
  183. if($res){
  184. $res = json_decode($res,true);
  185. if($res['code'] == 200 && $res['message']=='success'){
  186. return 1;
  187. }else{
  188. return 0;
  189. }
  190. }else{
  191. return 0;
  192. }
  193. }
  194. //实名认证姓名、身份证、手机号
  195. function threeElementCertification($id_card,$name,$phone)
  196. {
  197. $host = "http://sjsys.market.alicloudapi.com";
  198. $path = "/communication/personal/1979";
  199. $method = "POST";
  200. $appcode = "你自己的AppCode";
  201. $headers = array();
  202. array_push($headers, "Authorization:APPCODE " . $appcode);
  203. //根据API的要求,定义相对应的Content-Type
  204. array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
  205. $querys = "";
  206. $bodys = "idcard=$id_card****&mobile=$phone****&name=$name";
  207. $url = $host . $path;
  208. $curl = curl_init();
  209. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  210. curl_setopt($curl, CURLOPT_URL, $url);
  211. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  212. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  213. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  214. curl_setopt($curl, CURLOPT_HEADER, true);
  215. if (1 == strpos("$".$host, "https://")) {
  216. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  217. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  218. }
  219. curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
  220. var_dump(curl_exec($curl));
  221. }
  222. // 实名认证
  223. function user_certification($id_card,$name){
  224. $host = "http://checkone.market.alicloudapi.com";
  225. $path = "/chinadatapay/1882";
  226. $method = "POST";
  227. $appcode = "c8fd88cc95dd46fa8c50b05d219824ed";
  228. $headers = array();
  229. array_push($headers, "Authorization:APPCODE " . $appcode);
  230. //根据API的要求,定义相对应的Content-Type
  231. array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
  232. $bodys = "idcard=".$id_card."&name=".$name;
  233. $url = $host . $path;
  234. $curl = curl_init();
  235. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  236. curl_setopt($curl, CURLOPT_URL, $url);
  237. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  238. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  239. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  240. curl_setopt($curl, CURLOPT_HEADER, false);
  241. if (1 == strpos("$".$host, "https://"))
  242. {
  243. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  244. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  245. }
  246. curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
  247. $res = curl_exec($curl);
  248. if($res){
  249. $res = json_decode($res,true);
  250. if($res['data']['result'] == 1){
  251. return 1;
  252. }else{
  253. return 0;
  254. }
  255. }else{
  256. return 0;
  257. }
  258. }
  259. /**
  260. * 大师提前分钟数存入redis
  261. */
  262. function setAdvanceMinutes(){
  263. $redis = new \think\cache\driver\Redis();
  264. $value = Db::name('system_config')->where('name','advance_minutes')->value('value');
  265. $redis->set('advance_minutes',$value);
  266. }
  267. /**
  268. * 获取大师提前分钟数
  269. */
  270. function getAdvanceMinutes(){
  271. $redis = new \think\cache\driver\Redis();
  272. $value = $redis->get('advance_minutes');
  273. if (empty($value)){
  274. $value = Db::name('system_config')->where('name','advance_minutes')->value('value');
  275. $redis->set('advance_minutes',$value);
  276. }
  277. return $value;
  278. }
  279. /**
  280. * 获取自动取消分钟数
  281. */
  282. function getCancelTime(){
  283. return Db::name('system_config')->where('name','cancel_time')->value('value');
  284. }
  285. /**
  286. * 用户信息存入redis hash
  287. */
  288. function setMemberInfoHash($member_id){
  289. $info = Db::name('store_member')->where('id',$member_id)->find();
  290. $redis = new \think\cache\driver\Redis();
  291. $array = ['member'.$member_id=>json_encode($info)];
  292. $redis->hMSet('memberInfo',$array);
  293. }
  294. /**
  295. * redis获取用户信息
  296. */
  297. function getMemberInfoHash($member_id){
  298. $redis = new \think\cache\driver\Redis();
  299. $info = $redis->hGet('memberInfo','member'.$member_id);
  300. if (!$info){
  301. $info = Db::name('store_member')->where('id',$member_id)->find();
  302. $array = ['member'.$member_id=>json_encode($info)];
  303. $redis->hMSet('memberInfo',$array);
  304. }else{
  305. $info = json_decode($info,true);
  306. }
  307. return $info;
  308. }
  309. /**
  310. * 获取藏品库存
  311. */
  312. function getCollectionInventory($id){
  313. $redis = new \think\cache\driver\Redis();
  314. $count = $redis->get('collection_count_'.$id);
  315. // if (empty($count)){
  316. // $redis->set('collection_count_'.$id,0);
  317. // }
  318. return $count ? $count : 0;
  319. }
  320. /**
  321. * 减掉藏品库存
  322. */
  323. function loseCollectionInventory($id,$num){
  324. $redis = new \think\cache\driver\Redis();
  325. $redis->Decrby('collection_count_'.$id,$num);
  326. }
  327. /**
  328. * 加藏品库存
  329. */
  330. function addCollectionInventory($id,$num){
  331. $redis = new \think\cache\driver\Redis();
  332. $redis->Incrby('collection_count_'.$id,$num);
  333. }
  334. /**
  335. * 用户购买藏品排名更新
  336. */
  337. function saveRanking($id){
  338. }
  339. function getRanking($id){
  340. $redis = new \think\cache\driver\Redis();
  341. $count = $redis->Incr('ranking'.$id);
  342. return $count;
  343. }
  344. /**
  345. * 藏品信息存入redis hash
  346. */
  347. function setCollectionInfoHash($id){
  348. $info = Db::name('store_collection')->where('id',$id)->find();
  349. $redis = new \think\cache\driver\Redis();
  350. $array = ['collection'.$id=>json_encode($info)];
  351. $redis->hMSet('collectionInfo',$array);
  352. }
  353. /**
  354. * 获取用户购买数量
  355. */
  356. function getByCount($mid,$id){
  357. $redis = new \think\cache\driver\Redis();
  358. $count = $redis->get('UserByCount_'.$mid.$id);
  359. if (empty($count) && $count!=0){
  360. $count = 0;
  361. $redis->Incrby('UserByCount_'.$mid.$id,$count);
  362. }
  363. return $count;
  364. }
  365. /**
  366. * 用户购买数量增加
  367. */
  368. function IncrByCount($mid,$id,$number){
  369. $redis = new \think\cache\driver\Redis();
  370. $redis->Incrby('UserByCount_'.$mid.$id,$number);
  371. }
  372. /**
  373. * 用户购买数量减少
  374. */
  375. function DecrByCount($mid,$id,$number){
  376. $redis = new \think\cache\driver\Redis();
  377. $redis->Decrby('UserByCount_'.$mid.$id,$number);
  378. }
  379. /**
  380. * 获取藏品hash redis长度
  381. */
  382. function getLenCollection($id){
  383. $redis = new \think\cache\driver\Redis();
  384. $count = $redis->Llen('collectionHash_'.$id);
  385. if (!$count){
  386. $count = Db::name('hash')
  387. ->where('goods_id',$id)
  388. ->where('status',0)
  389. ->count();
  390. }
  391. return $count;
  392. }
  393. /**
  394. * 获取藏品信息
  395. */
  396. function getCollectionInfoHash($id)
  397. {
  398. $redis = new \think\cache\driver\Redis();
  399. $info = $redis->hGet('collectionInfo','collection'.$id);
  400. if (!$info){
  401. $info = Db::name('store_collection')->where('id',$id)->find();
  402. $array = ['collection'.$id=>json_encode($info)];
  403. $redis->hMSet('collectionInfo',$array);
  404. }else{
  405. $info = json_decode($info,true);
  406. }
  407. return $info;
  408. }
  409. /**
  410. * 收集下单用户id
  411. */
  412. function setCollectionBuyUser($mid){
  413. $redis = new \think\cache\driver\Redis();
  414. $array = [$mid=>1];
  415. $redis->hMSet('buyUserInfo',$array);
  416. }
  417. /*
  418. * 微信支付账户
  419. */
  420. function retrunWxConfig(){
  421. $config = [
  422. 'app_id' => 'wx8e47a12d0a1c007f',
  423. 'mch_id' =>'1627327076',
  424. 'key' =>'dguiadak46574hbfkjshfns55f87s5sd',
  425. ];
  426. return $config;
  427. }
  428. /**
  429. * 获取离线账户
  430. */
  431. function getOfflineAccount(){
  432. $url = 'http://192.144.219.204:8083/ddc/createAccount';
  433. return file_get_contents($url);
  434. }
  435. /**
  436. * 获取链账户
  437. */
  438. function getWalletAddress($phone){
  439. $url = getIpAddress().'register?accountName='.$phone;
  440. $res=curlRequest($url);
  441. if ($res){
  442. $res = json_decode($res,true);
  443. if ($res['code']=='200'){
  444. return $res['result']['userAddressStr'];
  445. }
  446. }
  447. return false;
  448. }
  449. /**
  450. * 获取公司生成的hash
  451. */
  452. function getCompanyHash($id){
  453. $redis = new \think\cache\driver\Redis();
  454. $hash = $redis->lPop('collectionHash_'.$id);
  455. if (!$hash){
  456. $hash = Db::name('hash')->where('goods_id',$id)
  457. ->where('status',0)
  458. ->order('id asc')
  459. ->field('hash,create_at,tokenid')
  460. ->limit(1)
  461. ->find();
  462. }else{
  463. $hash = json_decode($hash,true);
  464. }
  465. return $hash;
  466. }
  467. /**
  468. * 获取排名
  469. */
  470. function getTag($id,$now,$num){
  471. $len = strlen($num);
  472. $re = 'XL'.$id.'#';
  473. switch ($len){
  474. case 1:
  475. $re = $re.'0'.$now;
  476. break;
  477. case 2:
  478. if ($now<10){
  479. $re = $re.'0'.$now;
  480. }else{
  481. $re = $re.$now;
  482. }
  483. break;
  484. case 3:
  485. if ($now<10){
  486. $re = $re.'00'.$now;
  487. }elseif ($now>=10 && $now<100){
  488. $re = $re.'0'.$now;
  489. }else{
  490. $re = $re.$now;
  491. }
  492. break;
  493. case 4:
  494. if ($now<10){
  495. $re = $re.'000'.$now;
  496. }elseif ($now>=10 && $now<100){
  497. $re = $re.'00'.$now;
  498. }elseif ($now>=100 && $now<1000){
  499. $re = $re.'0'.$now;
  500. }else{
  501. $re = $re.$now;
  502. }
  503. break;
  504. case 5:
  505. if ($now<10){
  506. $re = $re.'0000'.$now;
  507. }elseif ($now>=10 && $now<100){
  508. $re = $re.'000'.$now;
  509. }elseif ($now>=100 && $now<1000){
  510. $re = $re.'00'.$now;
  511. }elseif ($now>=1000 && $now<10000){
  512. $re = $re.'0'.$now;
  513. }else{
  514. $re = $re.$now;
  515. }
  516. break;
  517. case 6:
  518. if ($now<10){
  519. $re = $re.'00000'.$now;
  520. }elseif ($now>=10 && $now<100){
  521. $re = $re.'0000'.$now;
  522. }elseif ($now>=100 && $now<1000){
  523. $re = $re.'000'.$now;
  524. }elseif ($now>=1000 && $now<10000){
  525. $re = $re.'00'.$now;
  526. }elseif ($now>=10000 && $now<100000){
  527. $re = $re.'0'.$now;
  528. }else{
  529. $re = $re.$now;
  530. }
  531. break;
  532. }
  533. $re = $re.'/'.$num;
  534. return $re;
  535. }
  536. /**
  537. * 判断藏品是否设置过提醒
  538. */
  539. function getRemind($mid,$c_id){
  540. return Db::name('store_collection_remind')->where('mid',$mid)->where('c_id',$c_id)->count();
  541. }
  542. /**
  543. * 变更会员积分等
  544. * @param int $money 余额
  545. * @param int $user_id 会员ID
  546. * @param string $memo 备注
  547. */
  548. function memberMoneyChange($num, $type , $m_id, $title, $pm = 0,$link_id=0,$change_type = 0)
  549. {
  550. $member = Db::name('store_member')->where('id',$m_id)->find();
  551. $is_inc = $pm == 1 ? 1 : -1;
  552. switch ($type){
  553. case 1: //积分
  554. $before = $member['integral'];
  555. if ($pm==1)
  556. $after = $member['integral']+$num;
  557. else
  558. $after = $member['integral']-$num;
  559. $update_data = ['integral'=>Db::raw('integral +'.$num*$is_inc)];
  560. break;
  561. case 2: //抢购卡
  562. $before = $member['snap_card'];
  563. if ($pm==1)
  564. $after = $member['snap_card']+$num;
  565. else
  566. $after = $member['snap_card']-$num;
  567. $update_data = ['snap_card'=>Db::raw('snap_card +'.$num*$is_inc)];
  568. break;
  569. case 3: //余额
  570. $before = $member['money'];
  571. if ($pm==1)
  572. $after = $member['money']+$num;
  573. else
  574. $after = $member['money']-$num;
  575. $update_data = ['money'=>Db::raw('money +'.$num*$is_inc)];
  576. break;
  577. }
  578. Db::startTrans();
  579. try {
  580. Db::name('store_member')->where('id',$m_id)->update($update_data);
  581. $data = [
  582. 'm_id'=>$m_id,
  583. 'type'=>$type,
  584. 'pm'=>$pm,
  585. 'title'=>$title,
  586. 'change'=>$num,
  587. 'before'=>$before,
  588. 'after'=>$after,
  589. 'link_id'=>$link_id,
  590. 'change_type'=>$change_type
  591. ];
  592. Db::name('store_member_log')->insert($data);
  593. Db::commit();
  594. return true;
  595. }catch (\Exception $e){
  596. Db::rollback();
  597. return false;
  598. }
  599. }
  600. /**
  601. * 变更会员等级
  602. * @param int $vid 等级
  603. * @param int $user_id 会员ID
  604. * @param array $other 其他
  605. */
  606. function memberVipChange($vid, $user_id, $other = [])
  607. {
  608. return true;// 象链没有会员等级
  609. $member = Db::name('store_member')->where('id',$user_id)->find();
  610. //数据
  611. $before = $member['vip'];
  612. $after = $vid;
  613. //新等级小于等级 则不升级
  614. if($after <= $before && $other['status'] == 1){
  615. return false;
  616. }
  617. //等级相同 不操作
  618. if($after == $before){
  619. return false;
  620. }
  621. $update_data['vip'] = $vid;
  622. Db::startTrans();
  623. try {
  624. Db::name('store_member')->where('id',$user_id)->update($update_data);
  625. $data = [
  626. 'mid' => $user_id,
  627. 'oldvid' => $before,
  628. 'vid' => $after,
  629. 'type' => $other['type'],
  630. 'status' => $other['status'],
  631. 'desc' => $other['desc'],
  632. 'order_table' => $other['order_table'],
  633. 'order_id' => $other['order_id'],
  634. ];
  635. Db::name('store_vipuser')->insert($data);
  636. Db::commit();
  637. return true;
  638. }catch (\Exception $e){
  639. Db::rollback();
  640. return false;
  641. }
  642. }
  643. /**
  644. * 获取会员等级
  645. */
  646. function getMemberVipInfo($uid, $field = '' )
  647. {
  648. $memberVip = Db::name('store_member')->where('id',$uid)->value('vip');
  649. if(!$field){
  650. $vipInfo = Db::name('store_vip')
  651. ->where('id',$memberVip)
  652. ->where('is_del',0)
  653. ->where('status',1)
  654. ->value('discount');
  655. }else{
  656. $vipInfo = Db::name('store_vip')->field($field)
  657. ->where('id',$memberVip)
  658. ->where('is_del',0)
  659. ->where('status',1)
  660. ->find();
  661. }
  662. return $vipInfo;
  663. }
  664. /**
  665. * 优先购匹配藏品会员等级
  666. * @param int $user_id 会员Id
  667. * @param int $memberVip 会员等级
  668. * @param string $vids 藏品配置等级
  669. * @param array $other 其他
  670. */
  671. function memberBuyGoodsVip($user_id,$memberVip, $vids = '', $other = [])
  672. {
  673. $vidData = explode(',',$vids);
  674. if(!in_array($memberVip,$vidData)){
  675. return [];
  676. }
  677. //获取等级详情
  678. $vipInfo = Db::name('store_vip')->field('id,name,advance_minutes,advance_count')
  679. ->where('id',$memberVip)
  680. ->where('is_del',0)
  681. ->where('status',1)
  682. ->find();
  683. //获取用户已经购买数量
  684. $userByCount = getByCount($user_id,$other['gid']);
  685. if($userByCount >= $vipInfo['advance_count'] ){
  686. return [];
  687. }
  688. return $vipInfo;
  689. }
  690. /**
  691. * 验证会员优先购
  692. * @param int $user_id 会员Id
  693. * @param int $goods_id 藏品id
  694. */
  695. function checkMemberPriority($user_id,$goods_id)
  696. {
  697. $import_user = Db::name('store_collection_first')->where('c_id',$goods_id)->cache(300)->column('num','uid');
  698. if(isset($import_user[$user_id]) && $import_user[$user_id] > 0) return $import_user[$user_id];// 导入设置优先购
  699. $power_coll = Db::name('collection_power')->where('before_id',$goods_id)->cache(300)->column('coll_id'); // 藏品拥有者优先购
  700. if(empty($power_coll)) return false;
  701. $has_collect = Db::name('store_order_info')
  702. ->where('mid',$user_id)
  703. ->where('c_id','in',implode(',',$power_coll))
  704. ->where('status','neq','2')
  705. ->where('is_destruction',1)
  706. ->where('resale_status',1)
  707. ->cache(300)
  708. ->count();
  709. return $has_collect ? true : false;
  710. }
  711. /**
  712. * 手续费折扣
  713. * @param int $user_id 会员Id
  714. * @param array $other 其他
  715. */
  716. function getMemberServiceCharge($user_id)
  717. {
  718. // 设置
  719. $power_coll = Db::name('collection_power')->where('discount','>',0)
  720. ->order('discount desc ,id desc')
  721. ->cache(300)->column('discount','coll_id');
  722. if(empty($power_coll)) return 1;
  723. $has_collect = Db::name('store_order_info')
  724. ->field('c_id')
  725. ->whereIn('c_id',implode(',',array_keys($power_coll)))
  726. ->where('mid',$user_id)
  727. ->where('status','neq','2')
  728. ->where('is_destruction',1)
  729. ->where('resale_status',1)
  730. ->group('c_id')
  731. ->cache(300)
  732. ->select();
  733. $discount = 100;
  734. // var_dump($power_coll,$has_collect);
  735. foreach ($has_collect as $v) {
  736. if( isset($power_coll[$v['c_id']])) $discount = $power_coll[$v['c_id']];
  737. }
  738. return bcdiv($discount,100,2);
  739. }
  740. /**
  741. * 获取单个系统配置信息
  742. */
  743. function getConfigValue($name){
  744. return Db::name('system_config')->where('name',$name)->cache(300)->value('value');
  745. }
  746. /**
  747. * 判断藏品状态
  748. */
  749. function checkCollectionState($id=''){
  750. if ($id){
  751. $info = Db::name('store_collection')->where('id',$id)->find();
  752. $now_inventory = getCollectionInventory($id);
  753. if ($info['state']==1){
  754. if ($now_inventory<=0){
  755. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>3]);
  756. }
  757. }else if($info['state']==2){
  758. if (strtotime($info['sell_time'])<=time()){
  759. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>1]);
  760. }
  761. }else if($info['state']==3){
  762. if ($now_inventory>0){
  763. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>1]);
  764. }
  765. }
  766. }else{
  767. $list = Db::name('store_collection')
  768. ->field('id,sell_time,state,now_inventory')
  769. ->whereIn('state','1,2,3')
  770. ->where('is_deleted',0)
  771. ->select();
  772. foreach ($list as &$v){
  773. $now_inventory = getCollectionInventory($v['id']);
  774. if ($v['state']==1){
  775. if ($now_inventory<=0 || $v['now_inventory'] == 0){
  776. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>3]);
  777. }
  778. }elseif ($v['state']==2){
  779. if (strtotime($v['sell_time'])<=time()){
  780. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>1]);
  781. }
  782. }elseif ($v['state']==3){
  783. if ($now_inventory>0){
  784. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>1]);
  785. }
  786. }
  787. }
  788. }
  789. }
  790. /**
  791. * 判断藏品状态
  792. */
  793. function checkSynCollectionState($id=''){
  794. if ($id){
  795. $info = Db::name('store_collection')->where('id',$id)->find();
  796. $now_inventory = getCollectionInventory($id);
  797. if ($info['sy_state']==1){
  798. if ($now_inventory<=0){
  799. Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>4]);
  800. }elseif(strtotime($info['end_time'])<time()){
  801. Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>3]);
  802. }
  803. }elseif ($info['sy_state']==2){
  804. if (strtotime($info['sell_time'])<=time()){
  805. Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>1]);
  806. }elseif ($now_inventory<=0){
  807. Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>4]);
  808. }
  809. }
  810. }else{
  811. $list = Db::name('store_collection')
  812. ->where('type',2)
  813. ->whereIn('sy_state','1,2')
  814. ->where('is_deleted',0)
  815. ->select();
  816. foreach ($list as &$v){
  817. $now_inventory = getCollectionInventory($v['id']);
  818. if ($v['sy_state']==1){
  819. if ($now_inventory<=0){
  820. Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>4]);
  821. }elseif($v['end_time'] && strtotime($v['end_time'])<time()){
  822. Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>3]);
  823. }
  824. }elseif ($v['sy_state']==2){
  825. if (strtotime($v['sell_time'])<=time()){
  826. Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>1]);
  827. }elseif ($now_inventory<=0){
  828. Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>4]);
  829. }
  830. }
  831. }
  832. }
  833. }
  834. /**
  835. * redis加锁
  836. */
  837. function redisSetNx($id,$exptime=3){
  838. $redis = new \think\cache\driver\Redis();
  839. $key = 'stock_'.$id;
  840. $is_lock = $redis->setnx($key,time()+$exptime);
  841. if ($is_lock){
  842. return true;
  843. }else{
  844. //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
  845. $val = $redis->get($key);
  846. if ($val && $val<time()){
  847. $redis->del($key);
  848. }
  849. return $redis->setnx($key,time()+$exptime);
  850. }
  851. }
  852. /**
  853. * 删除锁
  854. */
  855. function DelRedisSetNx($id){
  856. $redis = new \think\cache\driver\Redis();
  857. $key = 'stock_'.$id;
  858. $redis->del($key);
  859. }
  860. /**
  861. * 盲盒信息存入redis hash
  862. */
  863. function setBoxInfoHash($id){
  864. $info = Db::name('store_collection')->where('id',$id)->find();
  865. $redis = new \think\cache\driver\Redis();
  866. $array = ['collection'.$id=>json_encode($info)];
  867. $redis->hMSet('collectionInfo',$array);
  868. }
  869. /**
  870. * 获取0的数量
  871. */
  872. function get0number($n){
  873. if ($n==1){
  874. return '00000000000';
  875. }elseif ($n==2){
  876. return '0000000000';
  877. }elseif ($n==3){
  878. return '000000000';
  879. }elseif ($n==4){
  880. return '00000000';
  881. }elseif ($n==5){
  882. return '0000000';
  883. }elseif ($n==6){
  884. return '000000';
  885. }elseif ($n==7){
  886. return '00000';
  887. }elseif ($n==8){
  888. return '0000';
  889. }elseif ($n==9){
  890. return '000';
  891. }elseif ($n==10){
  892. return '00';
  893. }elseif ($n==11){
  894. return '0';
  895. }
  896. }
  897. /***********************************************人脸识别*****************************************************************/
  898. /**
  899. * 获取accesstoken
  900. * @return mixed
  901. */
  902. function getAccessToken(){
  903. $appid_id =getFaceInfo()['appid'];
  904. $secret = getFaceInfo()['secret'];
  905. $grant_type = 'client_credential';
  906. $version = '1.0.0';
  907. $url = "https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/access_token?app_id=".$appid_id."&secret=".$secret."&grant_type=".$grant_type."&version=".$version;
  908. $result = curlRequest($url);
  909. $result = json_decode($result,true);
  910. if ($result['code']==0){
  911. return $result;
  912. }
  913. echo $result['msg'];die;
  914. }
  915. /**
  916. * 获取api_ticket
  917. */
  918. function getApiTicket($type,$userId=''){
  919. $appid_id =getFaceInfo()['appid'];
  920. $access_token = getAccessToken()['access_token'];
  921. $version = '1.0.0';
  922. $url = "https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/api_ticket?app_id=".$appid_id."&access_token=".$access_token."&type=".$type."&version=".$version;
  923. if ($type=='NONCE'){
  924. $url .= "&user_id=".$userId;
  925. }
  926. $result = curlRequest($url);
  927. $result = json_decode($result,true);
  928. if ($result['code']==0){
  929. return $result;
  930. }
  931. echo $result['msg'];die;
  932. }
  933. /**
  934. * 生成签名
  935. */
  936. function generateSign($userId){
  937. $wbappid = getFaceInfo()['appid'];
  938. $version = '1.0.0';
  939. $ticket = getApiTicket('SIGN')['tickets'][0]['value'];
  940. $nonce = get32Str();
  941. // $array = ['wbappid'=>$wbappid, 'userId'=>"$userId",'nonce'=>$nonce, 'version'=>$version, 'ticket'=>$ticket];
  942. $array = [$wbappid, "$userId",$nonce, $version, $ticket];
  943. file_put_contents("signLog.txt", json_encode($array) . "\n" . "\n", FILE_APPEND);
  944. sort($array);
  945. $str='';
  946. foreach ($array as $kk=>$vv){
  947. $str .=$vv;
  948. }
  949. // echo $str;die;
  950. $result = strtoupper(sha1($str));
  951. $res['sign'] = $result;
  952. $res['nonce'] = $nonce;
  953. $res['appid'] = $wbappid;
  954. return $res;
  955. }
  956. /**
  957. * 合作方后台上送身份信息
  958. */
  959. function getfaceid($name,$idNo,$userId){
  960. $webankAppId = getFaceInfo()['appid'];
  961. $orderNo = get32Str();
  962. $sign = generateSign($userId);
  963. $data = [
  964. 'webankAppId'=>$webankAppId,
  965. 'orderNo'=>$orderNo,
  966. 'name'=>$name,
  967. 'idNo'=>$idNo,
  968. 'userId'=>"$userId",
  969. 'version'=>'1.0.0',
  970. 'sign'=>$sign['sign'],
  971. 'nonce'=>$sign['nonce']
  972. ];
  973. $headers = [];
  974. array_push($headers, "Content-Type".":"."application/json; charset=UTF-8");
  975. $url = 'https://miniprogram-kyc.tencentcloudapi.com/api/server/getfaceid?orderNo='.$orderNo;
  976. $result = curlRequest($url,$headers,json_encode($data),'POST');
  977. $result = json_decode($result,true);
  978. if ($result['code']==0){
  979. $data = [
  980. 'appid'=>$sign['appid'],
  981. 'userID'=>"$userId",
  982. 'sign'=>$sign['sign'],
  983. 'nonce'=>$sign['nonce'],
  984. 'sdksign'=>SdkSign($userId,$sign['nonce']),
  985. 'result'=>$result['result'],
  986. ];
  987. return $data;
  988. }
  989. echo $result['msg'];die;
  990. }
  991. /**
  992. * 生成 SDK 接口调用步骤使用签名
  993. */
  994. function SdkSign($userId,$nonce){
  995. $wbappid = getFaceInfo()['appid'];
  996. $version = '1.0.0';
  997. $ticket = getApiTicket('NONCE',$userId)['tickets'][0]['value'];
  998. //$nonce = get32Str();
  999. $array = [$wbappid, "$userId",$nonce, $version, $ticket];
  1000. file_put_contents("sdksignLog.txt", json_encode($array) . "\n" . "\n", FILE_APPEND);
  1001. sort($array);
  1002. $str='';
  1003. foreach ($array as $kk=>$vv){
  1004. $str .=$vv;
  1005. }
  1006. $result = strtoupper(sha1($str));
  1007. return $result;
  1008. }
  1009. function getFaceInfo(){
  1010. //正式
  1011. $date = [
  1012. 'appid'=>'IDAKcvCn',
  1013. 'secret'=>'L1id3z5zROK8SVXg72ZyZXc8ziniYLKpOnIzN1gecrBaEMaKIlKrreyRGCLU2z4l'
  1014. ];
  1015. //测试
  1016. // $date = [
  1017. // 'appid'=>'TIDA3uGO',
  1018. // 'secret'=>'z41IysbEhRy5oR4Qs2kFfVkrufXIJMtsJOQ3eulkWwXwdKG772LSSiZsKKwfsv9n'
  1019. // ];
  1020. return $date;
  1021. }
  1022. //将数组转成uri字符串
  1023. function formatBizQueryParaMap($paraMap, $urlencode)
  1024. {
  1025. $buff = "";
  1026. ksort($paraMap);
  1027. foreach ($paraMap as $k => $v)
  1028. {
  1029. if($urlencode)
  1030. {
  1031. $v = urlencode($v);
  1032. }
  1033. // $buff .= strtolower($k) . "=" . $v . "&";
  1034. $buff .= $v;
  1035. }
  1036. if (strlen($buff) > 0)
  1037. {
  1038. $reqPar = substr($buff, 0, strlen($buff)-1);
  1039. }
  1040. return $reqPar;
  1041. }
  1042. /**
  1043. * 生成??位随机数
  1044. */
  1045. function get32Str($length='32'){
  1046. // $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
  1047. $str = 'abcdefghijklmnopqrstuvwxyz0123456789';
  1048. $len = strlen($str)-1;
  1049. $randstr = '';
  1050. for ($i=0;$i<$length;$i++) {
  1051. $num=mt_rand(0,$len);
  1052. $randstr .= $str[$num];
  1053. }
  1054. return $randstr;
  1055. }
  1056. function get_order_sn(){
  1057. $order_id_main = date('YmdHis') . rand(10000000,99999999);
  1058. $order_id_len = strlen($order_id_main);
  1059. $order_id_sum = 0;
  1060. for($i=0; $i<$order_id_len; $i++){
  1061. $order_id_sum += (int)(substr($order_id_main,$i,1));
  1062. }
  1063. $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
  1064. return $osn;
  1065. }
  1066. ///**
  1067. // * 生成二维码
  1068. // */
  1069. //function setqrcode($value,$name){
  1070. // $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/user';
  1071. // if(!file_exists($dir)){
  1072. // //检查是否有该文件夹,如果没有就创建,并给予最高权限
  1073. // mkdir($dir, 0700,true);
  1074. // }
  1075. // $filename = $dir.'/'.$name.'.png';
  1076. // QRcode::png($value,$filename,QR_ECLEVEL_L,7);
  1077. // return 'http://'.$_SERVER['HTTP_HOST']."/user/".$name.'.png';
  1078. //}
  1079. /**
  1080. * 生成二维码
  1081. */
  1082. function setqrcode($value,$name){
  1083. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/user';
  1084. if(!file_exists($dir)){
  1085. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  1086. mkdir($dir, 0700,true);
  1087. }
  1088. $filename = $dir.'/'.$name.'.png';
  1089. QRcode::png($value,$filename,QR_ECLEVEL_L,7);
  1090. $storage_type = getConfigValue('storage_type');
  1091. if ($storage_type == 'oss'){
  1092. $ossClient = new OssClient(getConfigValue('storage_oss_keyid'), getConfigValue('storage_oss_secret'), getConfigValue('storage_oss_endpoint'));
  1093. $file_path = dirname($_SERVER['SCRIPT_FILENAME']) . "/user/".$name.".png";
  1094. $newName = date('Ymd').'/'.get_order_sn().'.png';
  1095. $result = $ossClient->uploadFile(getConfigValue('storage_oss_bucket'), $newName, $file_path);
  1096. $url = $result['info']['url'];
  1097. unlink($file_path);
  1098. }else{
  1099. $url = 'http://'.$_SERVER['HTTP_HOST']."/user/".$name.'.png';
  1100. }
  1101. return $url;
  1102. }
  1103. //生成邀请二维码
  1104. function setintivecode($user_id){
  1105. $name = $user_id."_".time();
  1106. $address = 'https://'.$_SERVER['HTTP_HOST'].'/h5/pages/mine/zhuce?invite_code='.$user_id;
  1107. $url = setqrcode($address,$name);
  1108. return $url;
  1109. }
  1110. //邀请地址
  1111. function getintiveaddress($user_id){
  1112. $address = 'https://'.$_SERVER['HTTP_HOST'].'/h5/pages/mine/zhuce?invite_code='.$user_id;
  1113. return $address;
  1114. }
  1115. /**
  1116. * @param $url
  1117. * @param array $headers
  1118. * @param array $body
  1119. * @param string $method
  1120. * @return bool|string
  1121. */
  1122. function curlRequest($url, $headers = [], $body = [], $method = "GET")
  1123. {
  1124. $ch = curl_init();
  1125. curl_setopt($ch, CURLOPT_URL, $url);
  1126. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
  1127. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
  1128. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
  1129. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  1130. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  1131. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  1132. curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
  1133. $output = curl_exec($ch);
  1134. curl_close($ch);
  1135. return $output;
  1136. }
  1137. /**
  1138. * 盲盒藏品库存和藏品状态判断
  1139. * @param $proArr
  1140. * @return int|string
  1141. */
  1142. function checkBox(){
  1143. $list = Db::name('store_blind_box')
  1144. ->where('status',1)
  1145. ->where('is_del',1)
  1146. ->field('id,is_prize,prize')
  1147. ->select();
  1148. foreach ($list as &$v){
  1149. if ($v['is_prize']==1){
  1150. $info = Db::name('store_collection')->where('id',$v['prize'])->find();
  1151. if ($info['now_inventory']<=0 || $info['status']==0 || $info['is_deleted']==1){
  1152. Db::name('store_blind_box')->where('id',$v['id'])->update(['status'=>0]);
  1153. }
  1154. }
  1155. }
  1156. }
  1157. //计算中奖概率
  1158. function get_rand($proArr) {
  1159. $result = '';
  1160. //概率数组的总概率精度
  1161. $proSum = array_sum($proArr);
  1162. // var_dump($proSum);
  1163. //概率数组循环
  1164. foreach ($proArr as $key => $proCur) {
  1165. $randNum = mt_rand(1, $proSum); //返回随机整数
  1166. if ($randNum <= $proCur) {
  1167. $result = $key;
  1168. break;
  1169. } else {
  1170. $proSum -= $proCur;
  1171. }
  1172. }
  1173. unset ($proArr);
  1174. return $result;
  1175. }
  1176. /**
  1177. * 调试函数
  1178. */
  1179. function debug($str){
  1180. $str = var_export($str,true).PHP_EOL;
  1181. $str.= date('Y-m-d H:i:s').' ';
  1182. $str.= $_SERVER['REMOTE_ADDR'].' ';
  1183. $str.= $_SERVER['REQUEST_METHOD'].': ';
  1184. // $str.=$_SERVER['HTTP_HOST'];
  1185. $str.= $_SERVER['REQUEST_URI'].''.PHP_EOL.PHP_EOL;
  1186. $str='<?php exit();?>'.PHP_EOL.$str;
  1187. error_log($str,3,"debug.log");
  1188. }
  1189. /**
  1190. * 获取链上ip
  1191. */
  1192. function getIpAddress(){
  1193. $address = 'http://8.136.12.232:8088/';
  1194. return $address;
  1195. }
  1196. function arrayToXml($arr)
  1197. {
  1198. $xml = "<xml>";
  1199. foreach ($arr as $key => $val) {
  1200. if (is_numeric($val)) {
  1201. $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
  1202. } else
  1203. $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
  1204. }
  1205. $xml .= "</xml>";
  1206. return $xml;
  1207. }
  1208. /**
  1209. * 验证银行卡号
  1210. * @param string $bankCardNo 银行卡号
  1211. * @return bool 是否合法(true:合法,false:不合法)
  1212. */
  1213. function check_bankCard($bankCardNo){
  1214. $arr_no = str_split($bankCardNo);
  1215. $last_n = $arr_no[count($arr_no)-1];
  1216. krsort($arr_no);
  1217. $i = 1;
  1218. $total = 0;
  1219. foreach ($arr_no as $n){
  1220. if($i%2==0){
  1221. $ix = $n*2;
  1222. if($ix>=10){
  1223. $nx = 1 + ($ix % 10);
  1224. $total += $nx;
  1225. }else{
  1226. $total += $ix;
  1227. }
  1228. }else{
  1229. $total += $n;
  1230. }
  1231. $i++;
  1232. }
  1233. $total -= $last_n;
  1234. $total *= 9;
  1235. if($last_n == ($total%10)){
  1236. return 1;
  1237. }
  1238. return 0;
  1239. }