common.php 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388
  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. $redis = new \think\cache\driver\Redis();
  339. $redis->Incr('ranking'.$id);
  340. }
  341. /**
  342. * 获取用户购买藏品排名更新
  343. */
  344. function getRanking($id){
  345. $redis = new \think\cache\driver\Redis();
  346. $count = $redis->get('ranking'.$id);
  347. if (empty($count)){
  348. $redis->set('ranking'.$id,0);
  349. }
  350. $count = empty($count) ? 0 : $count;
  351. return $count;
  352. }
  353. /**
  354. * 藏品信息存入redis hash
  355. */
  356. function setCollectionInfoHash($id){
  357. $info = Db::name('store_collection')->where('id',$id)->find();
  358. $redis = new \think\cache\driver\Redis();
  359. $array = ['collection'.$id=>json_encode($info)];
  360. $redis->hMSet('collectionInfo',$array);
  361. }
  362. /**
  363. * 获取用户购买数量
  364. */
  365. function getByCount($mid,$id){
  366. $redis = new \think\cache\driver\Redis();
  367. $count = $redis->get('UserByCount_'.$mid.$id);
  368. if (empty($count) && $count!=0){
  369. $count = 0;
  370. $redis->Incrby('UserByCount_'.$mid.$id,$count);
  371. }
  372. return $count;
  373. }
  374. /**
  375. * 用户购买数量增加
  376. */
  377. function IncrByCount($mid,$id,$number){
  378. $redis = new \think\cache\driver\Redis();
  379. $redis->Incrby('UserByCount_'.$mid.$id,$number);
  380. }
  381. /**
  382. * 用户购买数量减少
  383. */
  384. function DecrByCount($mid,$id,$number){
  385. $redis = new \think\cache\driver\Redis();
  386. $redis->Decrby('UserByCount_'.$mid.$id,$number);
  387. }
  388. /**
  389. * 获取藏品hash redis长度
  390. */
  391. function getLenCollection($id){
  392. $redis = new \think\cache\driver\Redis();
  393. $count = $redis->Llen('collectionHash_'.$id);
  394. if (!$count){
  395. $count = Db::name('hash')
  396. ->where('goods_id',$id)
  397. ->where('status',0)
  398. ->count();
  399. }
  400. return $count;
  401. }
  402. /**
  403. * 获取藏品信息
  404. */
  405. function getCollectionInfoHash($id)
  406. {
  407. $redis = new \think\cache\driver\Redis();
  408. $info = $redis->hGet('collectionInfo','collection'.$id);
  409. if (!$info){
  410. $info = Db::name('store_collection')->where('id',$id)->find();
  411. $array = ['collection'.$id=>json_encode($info)];
  412. $redis->hMSet('collectionInfo',$array);
  413. }else{
  414. $info = json_decode($info,true);
  415. }
  416. return $info;
  417. }
  418. /**
  419. * 收集下单用户id
  420. */
  421. function setCollectionBuyUser($mid){
  422. $redis = new \think\cache\driver\Redis();
  423. $array = [$mid=>1];
  424. $redis->hMSet('buyUserInfo',$array);
  425. }
  426. /*
  427. * 微信支付账户
  428. */
  429. function retrunWxConfig(){
  430. $config = [
  431. 'app_id' => 'wx8e47a12d0a1c007f',
  432. 'mch_id' =>'1627327076',
  433. 'key' =>'dguiadak46574hbfkjshfns55f87s5sd',
  434. ];
  435. return $config;
  436. }
  437. /**
  438. * 获取离线账户
  439. */
  440. function getOfflineAccount(){
  441. $url = 'http://192.144.219.204:8083/ddc/createAccount';
  442. return file_get_contents($url);
  443. }
  444. /**
  445. * 获取链账户
  446. */
  447. function getWalletAddress($phone){
  448. $url = getIpAddress().'register?accountName='.$phone;
  449. $res=curlRequest($url);
  450. if ($res){
  451. $res = json_decode($res,true);
  452. if ($res['code']=='200'){
  453. return $res['result']['userAddressStr'];
  454. }
  455. }
  456. return false;
  457. }
  458. /**
  459. * 获取公司生成的hash
  460. */
  461. function getCompanyHash($id){
  462. $redis = new \think\cache\driver\Redis();
  463. $hash = $redis->lPop('collectionHash_'.$id);
  464. if (!$hash){
  465. $hash = Db::name('hash')->where('goods_id',$id)
  466. ->where('status',0)
  467. ->order('id asc')
  468. ->field('hash,create_at')
  469. ->limit(1)
  470. ->find();
  471. }else{
  472. $hash = json_decode($hash,true);
  473. }
  474. return $hash;
  475. }
  476. /**
  477. * 获取排名
  478. */
  479. function getTag($id,$now,$num){
  480. $len = strlen($num);
  481. $re = 'XL'.$id.'#';
  482. switch ($len){
  483. case 1:
  484. $re = $re.'0'.$now;
  485. break;
  486. case 2:
  487. if ($now<10){
  488. $re = $re.'0'.$now;
  489. }else{
  490. $re = $re.$now;
  491. }
  492. break;
  493. case 3:
  494. if ($now<10){
  495. $re = $re.'00'.$now;
  496. }elseif ($now>=10 && $now<100){
  497. $re = $re.'0'.$now;
  498. }else{
  499. $re = $re.$now;
  500. }
  501. break;
  502. case 4:
  503. if ($now<10){
  504. $re = $re.'000'.$now;
  505. }elseif ($now>=10 && $now<100){
  506. $re = $re.'00'.$now;
  507. }elseif ($now>=100 && $now<1000){
  508. $re = $re.'0'.$now;
  509. }else{
  510. $re = $re.$now;
  511. }
  512. break;
  513. case 5:
  514. if ($now<10){
  515. $re = $re.'0000'.$now;
  516. }elseif ($now>=10 && $now<100){
  517. $re = $re.'000'.$now;
  518. }elseif ($now>=100 && $now<1000){
  519. $re = $re.'00'.$now;
  520. }elseif ($now>=1000 && $now<10000){
  521. $re = $re.'0'.$now;
  522. }else{
  523. $re = $re.$now;
  524. }
  525. break;
  526. case 6:
  527. if ($now<10){
  528. $re = $re.'00000'.$now;
  529. }elseif ($now>=10 && $now<100){
  530. $re = $re.'0000'.$now;
  531. }elseif ($now>=100 && $now<1000){
  532. $re = $re.'000'.$now;
  533. }elseif ($now>=1000 && $now<10000){
  534. $re = $re.'00'.$now;
  535. }elseif ($now>=10000 && $now<100000){
  536. $re = $re.'0'.$now;
  537. }else{
  538. $re = $re.$now;
  539. }
  540. break;
  541. }
  542. $re = $re.'/'.$num;
  543. return $re;
  544. }
  545. /**
  546. * 判断藏品是否设置过提醒
  547. */
  548. function getRemind($mid,$c_id){
  549. return Db::name('store_collection_remind')->where('mid',$mid)->where('c_id',$c_id)->count();
  550. }
  551. /**
  552. * 变更会员积分等
  553. * @param int $money 余额
  554. * @param int $user_id 会员ID
  555. * @param string $memo 备注
  556. */
  557. function memberMoneyChange($num, $type , $m_id, $title, $pm = 0,$link_id=0,$change_type = 0)
  558. {
  559. $member = Db::name('store_member')->where('id',$m_id)->find();
  560. $is_inc = $pm == 1 ? 1 : -1;
  561. switch ($type){
  562. case 1: //积分
  563. $before = $member['integral'];
  564. if ($pm==1)
  565. $after = $member['integral']+$num;
  566. else
  567. $after = $member['integral']-$num;
  568. $update_data = ['integral'=>Db::raw('integral +'.$num*$is_inc)];
  569. break;
  570. case 2: //抢购卡
  571. $before = $member['snap_card'];
  572. if ($pm==1)
  573. $after = $member['snap_card']+$num;
  574. else
  575. $after = $member['snap_card']-$num;
  576. $update_data = ['snap_card'=>Db::raw('snap_card +'.$num*$is_inc)];
  577. break;
  578. case 3: //余额
  579. $before = $member['money'];
  580. if ($pm==1)
  581. $after = $member['money']+$num;
  582. else
  583. $after = $member['money']-$num;
  584. $update_data = ['money'=>Db::raw('money +'.$num*$is_inc)];
  585. break;
  586. }
  587. Db::startTrans();
  588. try {
  589. Db::name('store_member')->where('id',$m_id)->update($update_data);
  590. $data = [
  591. 'm_id'=>$m_id,
  592. 'type'=>$type,
  593. 'pm'=>$pm,
  594. 'title'=>$title,
  595. 'change'=>$num,
  596. 'before'=>$before,
  597. 'after'=>$after,
  598. 'link_id'=>$link_id,
  599. 'change_type'=>$change_type
  600. ];
  601. Db::name('store_member_log')->insert($data);
  602. Db::commit();
  603. return true;
  604. }catch (\Exception $e){
  605. Db::rollback();
  606. return false;
  607. }
  608. }
  609. /**
  610. * 变更会员等级
  611. * @param int $vid 等级
  612. * @param int $user_id 会员ID
  613. * @param array $other 其他
  614. */
  615. function memberVipChange($vid, $user_id, $other = [])
  616. {
  617. return true;// 象链没有会员等级
  618. $member = Db::name('store_member')->where('id',$user_id)->find();
  619. //数据
  620. $before = $member['vip'];
  621. $after = $vid;
  622. //新等级小于等级 则不升级
  623. if($after <= $before && $other['status'] == 1){
  624. return false;
  625. }
  626. //等级相同 不操作
  627. if($after == $before){
  628. return false;
  629. }
  630. $update_data['vip'] = $vid;
  631. Db::startTrans();
  632. try {
  633. Db::name('store_member')->where('id',$user_id)->update($update_data);
  634. $data = [
  635. 'mid' => $user_id,
  636. 'oldvid' => $before,
  637. 'vid' => $after,
  638. 'type' => $other['type'],
  639. 'status' => $other['status'],
  640. 'desc' => $other['desc'],
  641. 'order_table' => $other['order_table'],
  642. 'order_id' => $other['order_id'],
  643. ];
  644. Db::name('store_vipuser')->insert($data);
  645. Db::commit();
  646. return true;
  647. }catch (\Exception $e){
  648. Db::rollback();
  649. return false;
  650. }
  651. }
  652. /**
  653. * 获取会员等级
  654. */
  655. function getMemberVipInfo($uid, $field = '' )
  656. {
  657. $memberVip = Db::name('store_member')->where('id',$uid)->value('vip');
  658. if(!$field){
  659. $vipInfo = Db::name('store_vip')
  660. ->where('id',$memberVip)
  661. ->where('is_del',0)
  662. ->where('status',1)
  663. ->value('discount');
  664. }else{
  665. $vipInfo = Db::name('store_vip')->field($field)
  666. ->where('id',$memberVip)
  667. ->where('is_del',0)
  668. ->where('status',1)
  669. ->find();
  670. }
  671. return $vipInfo;
  672. }
  673. /**
  674. * 优先购匹配藏品会员等级
  675. * @param int $user_id 会员Id
  676. * @param int $memberVip 会员等级
  677. * @param string $vids 藏品配置等级
  678. * @param array $other 其他
  679. */
  680. function memberBuyGoodsVip($user_id,$memberVip, $vids = '', $other = [])
  681. {
  682. $vidData = explode(',',$vids);
  683. if(!in_array($memberVip,$vidData)){
  684. return [];
  685. }
  686. //获取等级详情
  687. $vipInfo = Db::name('store_vip')->field('id,name,advance_minutes,advance_count')
  688. ->where('id',$memberVip)
  689. ->where('is_del',0)
  690. ->where('status',1)
  691. ->find();
  692. //获取用户已经购买数量
  693. $userByCount = getByCount($user_id,$other['gid']);
  694. if($userByCount >= $vipInfo['advance_count'] ){
  695. return [];
  696. }
  697. return $vipInfo;
  698. }
  699. /**
  700. * 验证会员优先购
  701. * @param int $user_id 会员Id
  702. * @param int $goods_id 藏品id
  703. */
  704. function checkMemberPriority($user_id,$goods_id)
  705. {
  706. $import_user = Db::name('store_collection_first')->where('c_id',$goods_id)->cache(300)->column('num','uid');
  707. if(isset($import_user[$user_id]) && $import_user[$user_id] > 0) return $import_user[$user_id];// 导入设置优先购
  708. $power_coll = Db::name('collection_power')->where('before_id',$goods_id)->cache(300)->column('coll_id'); // 藏品拥有者优先购
  709. if(empty($power_coll)) return false;
  710. $has_collect = Db::name('store_order_info')
  711. ->where('mid',$user_id)
  712. ->where('c_id','in',implode(',',$power_coll))
  713. ->where('status','neq','2')
  714. ->where('is_destruction',1)
  715. ->where('resale_status',1)
  716. ->cache(300)
  717. ->count();
  718. return $has_collect ? true : false;
  719. }
  720. /**
  721. * 手续费折扣
  722. * @param int $user_id 会员Id
  723. * @param array $other 其他
  724. */
  725. function getMemberServiceCharge($user_id)
  726. {
  727. // 设置
  728. $power_coll = Db::name('collection_power')->where('discount','>',0)
  729. ->order('discount desc ,id desc')
  730. ->cache(300)->column('discount','coll_id');
  731. if(empty($power_coll)) return 1;
  732. $has_collect = Db::name('store_order_info')
  733. ->field('c_id')
  734. ->whereIn('c_id',implode(',',array_keys($power_coll)))
  735. ->where('mid',$user_id)
  736. ->where('status','neq','2')
  737. ->where('is_destruction',1)
  738. ->where('resale_status',1)
  739. ->group('c_id')
  740. ->cache(300)
  741. ->select();
  742. $discount = 100;
  743. // var_dump($power_coll,$has_collect);
  744. foreach ($has_collect as $v) {
  745. if( isset($power_coll[$v['c_id']])) $discount = $power_coll[$v['c_id']];
  746. }
  747. return bcdiv($discount,100,2);
  748. }
  749. /**
  750. * 获取单个系统配置信息
  751. */
  752. function getConfigValue($name){
  753. return Db::name('system_config')->where('name',$name)->cache(300)->value('value');
  754. }
  755. /**
  756. * 判断藏品状态
  757. */
  758. function checkCollectionState($id=''){
  759. if ($id){
  760. $info = Db::name('store_collection')->where('id',$id)->find();
  761. $now_inventory = getCollectionInventory($id);
  762. if ($info['state']==1){
  763. if ($now_inventory<=0){
  764. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>3]);
  765. }
  766. }else if($info['state']==2){
  767. if (strtotime($info['sell_time'])<=time()){
  768. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>1]);
  769. }
  770. }else if($info['state']==3){
  771. if ($now_inventory>0){
  772. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>1]);
  773. }
  774. }
  775. }else{
  776. $list = Db::name('store_collection')
  777. ->field('id,sell_time,state,now_inventory')
  778. ->whereIn('state','1,2,3')
  779. ->where('is_deleted',0)
  780. ->select();
  781. foreach ($list as &$v){
  782. $now_inventory = getCollectionInventory($v['id']);
  783. if ($v['state']==1){
  784. if ($now_inventory<=0 || $v['now_inventory'] == 0){
  785. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>3]);
  786. }
  787. }elseif ($v['state']==2){
  788. if (strtotime($v['sell_time'])<=time()){
  789. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>1]);
  790. }
  791. }elseif ($v['state']==3){
  792. if ($now_inventory>0){
  793. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>1]);
  794. }
  795. }
  796. }
  797. }
  798. }
  799. /**
  800. * 判断藏品状态
  801. */
  802. function checkSynCollectionState($id=''){
  803. if ($id){
  804. $info = Db::name('store_collection')->where('id',$id)->find();
  805. $now_inventory = getCollectionInventory($id);
  806. if ($info['sy_state']==1){
  807. if ($now_inventory<=0){
  808. Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>4]);
  809. }elseif(strtotime($info['end_time'])<time()){
  810. Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>3]);
  811. }
  812. }elseif ($info['sy_state']==2){
  813. if (strtotime($info['sell_time'])<=time()){
  814. Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>1]);
  815. }elseif ($now_inventory<=0){
  816. Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>4]);
  817. }
  818. }
  819. }else{
  820. $list = Db::name('store_collection')
  821. ->where('type',2)
  822. ->whereIn('sy_state','1,2')
  823. ->where('is_deleted',0)
  824. ->select();
  825. foreach ($list as &$v){
  826. $now_inventory = getCollectionInventory($v['id']);
  827. if ($v['sy_state']==1){
  828. if ($now_inventory<=0){
  829. Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>4]);
  830. }elseif(strtotime($v['end_time'])<time()){
  831. Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>3]);
  832. }
  833. }elseif ($v['sy_state']==2){
  834. if (strtotime($v['sell_time'])<=time()){
  835. Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>1]);
  836. }elseif ($now_inventory<=0){
  837. Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>4]);
  838. }
  839. }
  840. }
  841. }
  842. }
  843. /**
  844. * redis加锁
  845. */
  846. function redisSetNx($id,$exptime=3){
  847. $redis = new \think\cache\driver\Redis();
  848. $key = 'stock_'.$id;
  849. $is_lock = $redis->setnx($key,time()+$exptime);
  850. if ($is_lock){
  851. return true;
  852. }else{
  853. //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
  854. $val = $redis->get($key);
  855. if ($val && $val<time()){
  856. $redis->del($key);
  857. }
  858. return $redis->setnx($key,time()+$exptime);
  859. }
  860. }
  861. /**
  862. * 删除锁
  863. */
  864. function DelRedisSetNx($id){
  865. $redis = new \think\cache\driver\Redis();
  866. $key = 'stock_'.$id;
  867. $redis->del($key);
  868. }
  869. /**
  870. * 盲盒信息存入redis hash
  871. */
  872. function setBoxInfoHash($id){
  873. $info = Db::name('store_collection')->where('id',$id)->find();
  874. $redis = new \think\cache\driver\Redis();
  875. $array = ['collection'.$id=>json_encode($info)];
  876. $redis->hMSet('collectionInfo',$array);
  877. }
  878. /**
  879. * 获取0的数量
  880. */
  881. function get0number($n){
  882. if ($n==1){
  883. return '00000000000';
  884. }elseif ($n==2){
  885. return '0000000000';
  886. }elseif ($n==3){
  887. return '000000000';
  888. }elseif ($n==4){
  889. return '00000000';
  890. }elseif ($n==5){
  891. return '0000000';
  892. }elseif ($n==6){
  893. return '000000';
  894. }elseif ($n==7){
  895. return '00000';
  896. }elseif ($n==8){
  897. return '0000';
  898. }elseif ($n==9){
  899. return '000';
  900. }elseif ($n==10){
  901. return '00';
  902. }elseif ($n==11){
  903. return '0';
  904. }
  905. }
  906. /***********************************************人脸识别*****************************************************************/
  907. /**
  908. * 获取accesstoken
  909. * @return mixed
  910. */
  911. function getAccessToken(){
  912. $appid_id =getFaceInfo()['appid'];
  913. $secret = getFaceInfo()['secret'];
  914. $grant_type = 'client_credential';
  915. $version = '1.0.0';
  916. $url = "https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/access_token?app_id=".$appid_id."&secret=".$secret."&grant_type=".$grant_type."&version=".$version;
  917. $result = curlRequest($url);
  918. $result = json_decode($result,true);
  919. if ($result['code']==0){
  920. return $result;
  921. }
  922. echo $result['msg'];die;
  923. }
  924. /**
  925. * 获取api_ticket
  926. */
  927. function getApiTicket($type,$userId=''){
  928. $appid_id =getFaceInfo()['appid'];
  929. $access_token = getAccessToken()['access_token'];
  930. $version = '1.0.0';
  931. $url = "https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/api_ticket?app_id=".$appid_id."&access_token=".$access_token."&type=".$type."&version=".$version;
  932. if ($type=='NONCE'){
  933. $url .= "&user_id=".$userId;
  934. }
  935. $result = curlRequest($url);
  936. $result = json_decode($result,true);
  937. if ($result['code']==0){
  938. return $result;
  939. }
  940. echo $result['msg'];die;
  941. }
  942. /**
  943. * 生成签名
  944. */
  945. function generateSign($userId){
  946. $wbappid = getFaceInfo()['appid'];
  947. $version = '1.0.0';
  948. $ticket = getApiTicket('SIGN')['tickets'][0]['value'];
  949. $nonce = get32Str();
  950. // $array = ['wbappid'=>$wbappid, 'userId'=>"$userId",'nonce'=>$nonce, 'version'=>$version, 'ticket'=>$ticket];
  951. $array = [$wbappid, "$userId",$nonce, $version, $ticket];
  952. file_put_contents("signLog.txt", json_encode($array) . "\n" . "\n", FILE_APPEND);
  953. sort($array);
  954. $str='';
  955. foreach ($array as $kk=>$vv){
  956. $str .=$vv;
  957. }
  958. // echo $str;die;
  959. $result = strtoupper(sha1($str));
  960. $res['sign'] = $result;
  961. $res['nonce'] = $nonce;
  962. $res['appid'] = $wbappid;
  963. return $res;
  964. }
  965. /**
  966. * 合作方后台上送身份信息
  967. */
  968. function getfaceid($name,$idNo,$userId){
  969. $webankAppId = getFaceInfo()['appid'];
  970. $orderNo = get32Str();
  971. $sign = generateSign($userId);
  972. $data = [
  973. 'webankAppId'=>$webankAppId,
  974. 'orderNo'=>$orderNo,
  975. 'name'=>$name,
  976. 'idNo'=>$idNo,
  977. 'userId'=>"$userId",
  978. 'version'=>'1.0.0',
  979. 'sign'=>$sign['sign'],
  980. 'nonce'=>$sign['nonce']
  981. ];
  982. $headers = [];
  983. array_push($headers, "Content-Type".":"."application/json; charset=UTF-8");
  984. $url = 'https://miniprogram-kyc.tencentcloudapi.com/api/server/getfaceid?orderNo='.$orderNo;
  985. $result = curlRequest($url,$headers,json_encode($data),'POST');
  986. $result = json_decode($result,true);
  987. if ($result['code']==0){
  988. $data = [
  989. 'appid'=>$sign['appid'],
  990. 'userID'=>"$userId",
  991. 'sign'=>$sign['sign'],
  992. 'nonce'=>$sign['nonce'],
  993. 'sdksign'=>SdkSign($userId,$sign['nonce']),
  994. 'result'=>$result['result'],
  995. ];
  996. return $data;
  997. }
  998. echo $result['msg'];die;
  999. }
  1000. /**
  1001. * 生成 SDK 接口调用步骤使用签名
  1002. */
  1003. function SdkSign($userId,$nonce){
  1004. $wbappid = getFaceInfo()['appid'];
  1005. $version = '1.0.0';
  1006. $ticket = getApiTicket('NONCE',$userId)['tickets'][0]['value'];
  1007. //$nonce = get32Str();
  1008. $array = [$wbappid, "$userId",$nonce, $version, $ticket];
  1009. file_put_contents("sdksignLog.txt", json_encode($array) . "\n" . "\n", FILE_APPEND);
  1010. sort($array);
  1011. $str='';
  1012. foreach ($array as $kk=>$vv){
  1013. $str .=$vv;
  1014. }
  1015. $result = strtoupper(sha1($str));
  1016. return $result;
  1017. }
  1018. function getFaceInfo(){
  1019. //正式
  1020. $date = [
  1021. 'appid'=>'IDAKcvCn',
  1022. 'secret'=>'L1id3z5zROK8SVXg72ZyZXc8ziniYLKpOnIzN1gecrBaEMaKIlKrreyRGCLU2z4l'
  1023. ];
  1024. //测试
  1025. // $date = [
  1026. // 'appid'=>'TIDA3uGO',
  1027. // 'secret'=>'z41IysbEhRy5oR4Qs2kFfVkrufXIJMtsJOQ3eulkWwXwdKG772LSSiZsKKwfsv9n'
  1028. // ];
  1029. return $date;
  1030. }
  1031. //将数组转成uri字符串
  1032. function formatBizQueryParaMap($paraMap, $urlencode)
  1033. {
  1034. $buff = "";
  1035. ksort($paraMap);
  1036. foreach ($paraMap as $k => $v)
  1037. {
  1038. if($urlencode)
  1039. {
  1040. $v = urlencode($v);
  1041. }
  1042. // $buff .= strtolower($k) . "=" . $v . "&";
  1043. $buff .= $v;
  1044. }
  1045. if (strlen($buff) > 0)
  1046. {
  1047. $reqPar = substr($buff, 0, strlen($buff)-1);
  1048. }
  1049. return $reqPar;
  1050. }
  1051. /**
  1052. * 生成??位随机数
  1053. */
  1054. function get32Str($length='32'){
  1055. // $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
  1056. $str = 'abcdefghijklmnopqrstuvwxyz0123456789';
  1057. $len = strlen($str)-1;
  1058. $randstr = '';
  1059. for ($i=0;$i<$length;$i++) {
  1060. $num=mt_rand(0,$len);
  1061. $randstr .= $str[$num];
  1062. }
  1063. return $randstr;
  1064. }
  1065. function get_order_sn(){
  1066. $order_id_main = date('YmdHis') . rand(10000000,99999999);
  1067. $order_id_len = strlen($order_id_main);
  1068. $order_id_sum = 0;
  1069. for($i=0; $i<$order_id_len; $i++){
  1070. $order_id_sum += (int)(substr($order_id_main,$i,1));
  1071. }
  1072. $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
  1073. return $osn;
  1074. }
  1075. ///**
  1076. // * 生成二维码
  1077. // */
  1078. //function setqrcode($value,$name){
  1079. // $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/user';
  1080. // if(!file_exists($dir)){
  1081. // //检查是否有该文件夹,如果没有就创建,并给予最高权限
  1082. // mkdir($dir, 0700,true);
  1083. // }
  1084. // $filename = $dir.'/'.$name.'.png';
  1085. // QRcode::png($value,$filename,QR_ECLEVEL_L,7);
  1086. // return 'http://'.$_SERVER['HTTP_HOST']."/user/".$name.'.png';
  1087. //}
  1088. /**
  1089. * 生成二维码
  1090. */
  1091. function setqrcode($value,$name){
  1092. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/user';
  1093. if(!file_exists($dir)){
  1094. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  1095. mkdir($dir, 0700,true);
  1096. }
  1097. $filename = $dir.'/'.$name.'.png';
  1098. QRcode::png($value,$filename,QR_ECLEVEL_L,7);
  1099. $storage_type = getConfigValue('storage_type');
  1100. if ($storage_type == 'oss'){
  1101. $ossClient = new OssClient(getConfigValue('storage_oss_keyid'), getConfigValue('storage_oss_secret'), getConfigValue('storage_oss_endpoint'));
  1102. $file_path = dirname($_SERVER['SCRIPT_FILENAME']) . "/user/".$name.".png";
  1103. $newName = date('Ymd').'/'.get_order_sn().'.png';
  1104. $result = $ossClient->uploadFile(getConfigValue('storage_oss_bucket'), $newName, $file_path);
  1105. $url = $result['info']['url'];
  1106. unlink($file_path);
  1107. }else{
  1108. $url = 'http://'.$_SERVER['HTTP_HOST']."/user/".$name.'.png';
  1109. }
  1110. return $url;
  1111. }
  1112. //生成邀请二维码
  1113. function setintivecode($user_id){
  1114. $name = $user_id."_".time();
  1115. $address = 'https://'.$_SERVER['HTTP_HOST'].'/h5/pages/mine/zhuce?invite_code='.$user_id;
  1116. $url = setqrcode($address,$name);
  1117. return $url;
  1118. }
  1119. //邀请地址
  1120. function getintiveaddress($user_id){
  1121. $address = 'https://'.$_SERVER['HTTP_HOST'].'/h5/pages/mine/zhuce?invite_code='.$user_id;
  1122. return $address;
  1123. }
  1124. /**
  1125. * @param $url
  1126. * @param array $headers
  1127. * @param array $body
  1128. * @param string $method
  1129. * @return bool|string
  1130. */
  1131. function curlRequest($url, $headers = [], $body = [], $method = "GET")
  1132. {
  1133. $ch = curl_init();
  1134. curl_setopt($ch, CURLOPT_URL, $url);
  1135. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
  1136. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
  1137. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
  1138. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  1139. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  1140. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  1141. curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
  1142. $output = curl_exec($ch);
  1143. curl_close($ch);
  1144. return $output;
  1145. }
  1146. /**
  1147. * 盲盒藏品库存和藏品状态判断
  1148. * @param $proArr
  1149. * @return int|string
  1150. */
  1151. function checkBox(){
  1152. $list = Db::name('store_blind_box')
  1153. ->where('status',1)
  1154. ->where('is_del',1)
  1155. ->field('id,is_prize,prize')
  1156. ->select();
  1157. foreach ($list as &$v){
  1158. if ($v['is_prize']==1){
  1159. $info = Db::name('store_collection')->where('id',$v['prize'])->find();
  1160. if ($info['now_inventory']<=0 || $info['status']==0 || $info['is_deleted']==1){
  1161. Db::name('store_blind_box')->where('id',$v['id'])->update(['status'=>0]);
  1162. }
  1163. }
  1164. }
  1165. }
  1166. //计算中奖概率
  1167. function get_rand($proArr) {
  1168. $result = '';
  1169. //概率数组的总概率精度
  1170. $proSum = array_sum($proArr);
  1171. // var_dump($proSum);
  1172. //概率数组循环
  1173. foreach ($proArr as $key => $proCur) {
  1174. $randNum = mt_rand(1, $proSum); //返回随机整数
  1175. if ($randNum <= $proCur) {
  1176. $result = $key;
  1177. break;
  1178. } else {
  1179. $proSum -= $proCur;
  1180. }
  1181. }
  1182. unset ($proArr);
  1183. return $result;
  1184. }
  1185. /**
  1186. * 调试函数
  1187. */
  1188. function debug($str){
  1189. $str = var_export($str,true).PHP_EOL;
  1190. $str.= date('Y-m-d H:i:s').' ';
  1191. $str.= $_SERVER['REMOTE_ADDR'].' ';
  1192. $str.= $_SERVER['REQUEST_METHOD'].': ';
  1193. // $str.=$_SERVER['HTTP_HOST'];
  1194. $str.= $_SERVER['REQUEST_URI'].''.PHP_EOL.PHP_EOL;
  1195. $str='<?php exit();?>'.PHP_EOL.$str;
  1196. error_log($str,3,"debug.log");
  1197. }
  1198. /**
  1199. * 获取链上ip
  1200. */
  1201. function getIpAddress(){
  1202. $address = 'http://8.136.12.232:8088/';
  1203. return $address;
  1204. }
  1205. function arrayToXml($arr)
  1206. {
  1207. $xml = "<xml>";
  1208. foreach ($arr as $key => $val) {
  1209. if (is_numeric($val)) {
  1210. $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
  1211. } else
  1212. $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
  1213. }
  1214. $xml .= "</xml>";
  1215. return $xml;
  1216. }
  1217. /**
  1218. * 验证银行卡号
  1219. * @param string $bankCardNo 银行卡号
  1220. * @return bool 是否合法(true:合法,false:不合法)
  1221. */
  1222. function check_bankCard($bankCardNo){
  1223. $arr_no = str_split($bankCardNo);
  1224. $last_n = $arr_no[count($arr_no)-1];
  1225. krsort($arr_no);
  1226. $i = 1;
  1227. $total = 0;
  1228. foreach ($arr_no as $n){
  1229. if($i%2==0){
  1230. $ix = $n*2;
  1231. if($ix>=10){
  1232. $nx = 1 + ($ix % 10);
  1233. $total += $nx;
  1234. }else{
  1235. $total += $ix;
  1236. }
  1237. }else{
  1238. $total += $n;
  1239. }
  1240. $i++;
  1241. }
  1242. $total -= $last_n;
  1243. $total *= 9;
  1244. if($last_n == ($total%10)){
  1245. return 1;
  1246. }
  1247. return 0;
  1248. }