common.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. <?php
  2. use think\Db;
  3. use think\Session;
  4. /**
  5. * 秒转换为天
  6. */
  7. function get_stay_time($remain_time, $is_hour = 1, $is_minutes = 1)
  8. {
  9. $day = floor($remain_time / (3600*24));
  10. $day = $day > 0 ? $day.'天' : '';
  11. $hour = floor(($remain_time % (3600*24)) / 3600);
  12. $hour = $hour > 0 ? $hour.'小时' : '';
  13. if($is_hour && $is_minutes) {
  14. $minutes = floor((($remain_time % (3600*24)) % 3600) / 60);
  15. $minutes = $minutes > 0 ? $minutes.'分钟' : '';
  16. return $day.$hour.$minutes;
  17. }
  18. if($hour) {
  19. return $day.$hour;
  20. }
  21. return $day;
  22. }
  23. //获取全图片地址 $image_data
  24. function image_path($image_data){
  25. if(empty($image_data)){
  26. return $image_data;
  27. }
  28. if (strpos($image_data,'|')!==false){
  29. $image_res = explode('|',$image_data);
  30. }elseif(strpos($image_data,',')!==false){
  31. $image_res = explode(',',$image_data);
  32. }else{
  33. $image_res = array($image_data);
  34. }
  35. return $image_res;
  36. }
  37. function get_order_sn(){
  38. $order_id_main = date('YmdHis') . rand(10000000,99999999);
  39. $order_id_len = strlen($order_id_main);
  40. $order_id_sum = 0;
  41. for($i=0; $i<$order_id_len; $i++){
  42. $order_id_sum += (int)(substr($order_id_main,$i,1));
  43. }
  44. $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
  45. return $osn;
  46. }
  47. /**
  48. * 更新会员积分
  49. * @param $user_id
  50. * @param $integral
  51. * @param $desc
  52. * @param int $rel_id
  53. * @throws \think\Exception
  54. * @throws \think\db\exception\DataNotFoundException
  55. * @throws \think\db\exception\ModelNotFoundException
  56. * @throws \think\exception\DbException
  57. * @throws \think\exception\PDOException
  58. */
  59. function update_user_integral($user_id,$integral,$type,$desc,$rel_id = 0)
  60. {
  61. $user = Db::table('store_member')->find($user_id);
  62. $integral_info=[
  63. 'user_id'=> $user_id,
  64. 'create_at'=> date("Y-m-d H:i:s"),
  65. 'integral'=> $integral,
  66. 'before'=> $user['integral'],
  67. 'after'=> $user['integral'] + $integral,
  68. 'type'=>$type,
  69. 'desc'=> $desc,
  70. 'rel_id'=> $rel_id,
  71. ];
  72. Db::table('integral_info')->insert($integral_info);
  73. Db::table('store_member')->where(['id'=>$user_id])->update(['integral'=>$integral_info['after']]);
  74. }
  75. /**
  76. * 更新会员成长值
  77. * @param $user_id
  78. * @param $growth
  79. * @param $desc
  80. * @throws \think\Exception
  81. * @throws \think\db\exception\DataNotFoundException
  82. * @throws \think\db\exception\ModelNotFoundException
  83. * @throws \think\exception\DbException
  84. * @throws \think\exception\PDOException
  85. */
  86. function update_user_growth($user_id,$growth,$type,$desc,$data = [])
  87. {
  88. $growth_info=[
  89. 'user_id'=> $user_id,
  90. 'create_at'=> date("Y-m-d H:i:s"),
  91. 'growth'=> $growth,
  92. 'type'=>$type,
  93. 'desc'=> $desc,
  94. 'detail'=> json_encode($data),
  95. ];
  96. Db::startTrans();
  97. Db::table('member_level_growth')->insert($growth_info);
  98. Db::table('store_member')->where('id',$user_id)->setInc('growth',$growth);
  99. $user = Db::table('store_member')->field('level_id,growth')->find($user_id);
  100. $lev_set = Db::table('member_level')->select();
  101. $lev_set = array_column($lev_set,null,'id');
  102. if(isset($lev_set[$user['level_id']+1]) && $user['growth'] >= $lev_set[$user['level_id']+1]['growth']) {
  103. $level_log = [
  104. 'user_id' => $user_id ,
  105. 'create_at' => date("Y-m-d H:i:s") ,
  106. 'before_lev' => $user['level_id'] ,
  107. 'after_lev' => $user['level_id']+1 ,
  108. 'desc' => '恭喜亲成功晋级成为'.$lev_set[$user['level_id']+1]['name'].'会员!' ,
  109. ];
  110. Db::table('member_level_log')->insert($level_log);
  111. Db::table('store_member')->where('id',$user_id)->setInc('level_id',1);
  112. }
  113. DB::commit();
  114. }
  115. /**
  116. * 获取access_token
  117. */
  118. function get_access_token(){
  119. $app_id = 'wx4ccfaf737dd24004';
  120. $app_secret ='a7a7e0e7e3ce132f751e85202a09e0dc';
  121. $session = new Session();
  122. $over_time = $session->get('token_over_time');
  123. if($over_time < time()) {
  124. $url= "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$app_id}&secret={$app_secret}";
  125. $ret = http_curl($url);
  126. $session->set('access_token',$ret['access_token']);
  127. $session->set('token_over_time',time() +$ret['expires_in'] );
  128. }
  129. return $session->get('access_token');
  130. }
  131. /**
  132. * 发放模板消息
  133. */
  134. function send_message($access_token,$openid,$jump_url,$data=[]){
  135. // $url='https://api.weixin.qq.com/cgi-bin/message/template/send?access_token='.$access_token;
  136. $url='https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send?access_token='.$access_token;
  137. $data=[
  138. 'touser'=>$openid,
  139. 'mp_template_msg'=>[
  140. "appid"=>"wx8e881917d7c4c283",// 公众号
  141. "template_id"=>"k36NAugBdarjBkMJQgMJqdpgIXtV4S89U7LQfPc9BAM",
  142. "url"=>$jump_url,
  143. 'miniprogram'=>[
  144. //"appid"=>"wx4ccfaf737dd24004",// 小程序
  145. ],
  146. 'data'=>[
  147. 'first'=>[
  148. "value"=>$data[0],
  149. "color"=>"#173177"
  150. ],
  151. 'keyword1'=>[
  152. "value"=>$data[1],
  153. "color"=>"#173177"
  154. ],
  155. 'keyword2'=>[
  156. "value"=>$data[2],
  157. "color"=>"#173177"
  158. ],
  159. 'keyword3'=>[
  160. "value"=>$data[3],
  161. "color"=>"#173177"
  162. ],
  163. 'remark'=>[
  164. "value"=>$data[4],
  165. "color"=>"#173177"
  166. ]
  167. ]
  168. ],
  169. ];
  170. $res = http_curl($url,'post',$data);
  171. }
  172. // 获取模板区域
  173. function get_city_area()
  174. {
  175. $field=['id','pid','name'];
  176. $list=Db::table('store_area')->where('pid',0)->field($field)->select();
  177. foreach ($list as $k=>&$v){
  178. $v['children']= Db::table('store_area')->where('pid',$v['id'])->field($field)->select();
  179. }
  180. return $list;
  181. }
  182. function http_curl($url,$type='get',$arr=''){
  183. //1.初始化curl
  184. $ch = curl_init();
  185. //2.设置curl的参数
  186. curl_setopt($ch, CURLOPT_URL, $url);
  187. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  188. if($type == 'post'){
  189. curl_setopt($ch, CURLOPT_POST,1);
  190. curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($arr));
  191. curl_setopt($ch, CURLOPT_HEADER, 0);
  192. }
  193. //3.采集
  194. $output = curl_exec($ch);
  195. //4.关闭
  196. curl_close($ch);
  197. return json_decode($output,true);
  198. }
  199. // 获取物流信息
  200. function get_delivery($send_no = 'JD0053309649641',$express_code=''){
  201. error_reporting(E_ALL || ~E_NOTICE);
  202. $AppKey = 204002714;
  203. $AppSecret ='q4MgT64XnevYnpZYrRBjYvmBE9dl7jXb';
  204. $AppCode ='386afbaa66574df7b843f758d86c02be';//开通服务后 买家中心-查看AppCode
  205. $host = "https://wuliu.market.alicloudapi.com";//api访问链接
  206. $path = "/kdi";//API访问后缀
  207. $method = "GET";
  208. $body ='';
  209. $headers = array();
  210. array_push($headers, "Authorization:APPCODE " . $AppCode);
  211. $querys = "no={$send_no}&type={$express_code}"; //参数写在这里
  212. $url = $host . $path . "?" . $querys;
  213. $curl = curl_init();
  214. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  215. curl_setopt($curl, CURLOPT_URL, $url);
  216. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  217. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  218. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  219. curl_setopt($curl, CURLOPT_HEADER, true);
  220. if (1 == strpos("$" . $host, "https://")) {
  221. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  222. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  223. }
  224. $out_put = curl_exec($curl);
  225. $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
  226. list($header, $body) = explode("\r\n\r\n", $out_put, 2);
  227. if ($httpCode == 200) {
  228. return json_decode($body,true)['result'];
  229. } else {
  230. return [];
  231. /* if ($httpCode == 400 && strpos($header, "Invalid Param Location") !== false) {
  232. print("参数错误");
  233. } elseif ($httpCode == 400 && strpos($header, "Invalid AppCode") !== false) {
  234. print("AppCode错误");
  235. } elseif ($httpCode == 400 && strpos($header, "Invalid Url") !== false) {
  236. print("请求的 Method、Path 或者环境错误");
  237. } elseif ($httpCode == 403 && strpos($header, "Unauthorized") !== false) {
  238. print("服务未被授权(或URL和Path不正确)");
  239. } elseif ($httpCode == 403 && strpos($header, "Quota Exhausted") !== false) {
  240. print("套餐包次数用完");
  241. } elseif ($httpCode == 500) {
  242. print("API网关错误");
  243. } elseif ($httpCode == 0) {
  244. print("URL错误");
  245. } else {
  246. print("参数名错误 或 其他错误");
  247. print($httpCode);
  248. $headers = explode("\r\n", $header);
  249. $headList = array();
  250. foreach ($headers as $head) {
  251. $value = explode(':', $head);
  252. $headList[$value[0]] = $value[1];
  253. }
  254. print($headList['x-ca-error-message']);
  255. }*/
  256. }
  257. }
  258. function draw_lottery ($data = [],$field='',$num = 1)
  259. {
  260. $draw_data = [];
  261. foreach ($data as $k=>$v)
  262. {
  263. if($v[$field] > 0)
  264. {
  265. for($i=1;$i<=$v[$field];$i++)
  266. {
  267. $draw_data[] = $k.'_key_'.$i;
  268. }
  269. }
  270. }
  271. $rand_key = array_rand($draw_data,$num);
  272. $draw_key = [];
  273. for ($a=0;$a<$num;$a++) {
  274. $draw_key[] = explode( '_key_',$draw_data[$rand_key[$a]])[0];
  275. }
  276. var_dump($draw_key);
  277. }
  278. function reload_url()
  279. {
  280. if(input('reloaded') !=1) {
  281. echo "<script>
  282. location.href=location.href+'&reloaded=1';
  283. location.reload();
  284. </script>";
  285. }
  286. }