common.php 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <?php
  2. use think\Db;
  3. use app\common\library\QRcode;
  4. use OSS\OssClient;
  5. /**
  6. * 导出excel文件
  7. */
  8. function phpExcelListNew($field = [], $list = [], $title = '文件')
  9. {
  10. $PHPExcel = new \PHPExcel();
  11. $PHPSheet = $PHPExcel->getActiveSheet();
  12. $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
  13. foreach ($list as $key => $value) {
  14. foreach ($field as $k => $v) {
  15. if ($key == 0) {
  16. $PHPSheet = $PHPExcel->getActiveSheet()->setCellValue($k . '1', $v[0]);
  17. }
  18. $i = $key + 2;
  19. $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
  20. }
  21. }
  22. $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel, 'Excel2007'); //按照指定格式生成Excel文件,
  23. header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
  24. header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
  25. header('Cache-Control: max-age=0'); //禁止缓存
  26. $PHPWriter->save("php://output"); //输出到浏览器
  27. }
  28. /*
  29. * 活动状态
  30. */
  31. function av_status($id)
  32. {
  33. //1活动未开始、2活动报名中、3报名已满、4报名结束、5活动进中、6活动结束
  34. $avtivity = Db::name('store_activity')->where('id', $id)->field('av_statime,av_endtime,sig_statime,sig_endtime,av_number,status')->find();
  35. $sing = Db::name('store_activity_sing')->where('a_id', $id)->count();
  36. $av_statime = strtotime($avtivity['av_statime']);
  37. $av_endtime = strtotime($avtivity['av_endtime']);
  38. $sig_statime = strtotime($avtivity['sig_statime']);
  39. $sig_endtime = strtotime($avtivity['sig_endtime']);
  40. $time = time();
  41. if ($sig_statime < $time) {
  42. $status = 2;
  43. }
  44. if ($sig_statime < $time && $avtivity['av_number'] <= $sing) {
  45. $status = 3;
  46. }
  47. if ($sig_endtime < $time) {
  48. $status = 4;
  49. }
  50. if ($av_statime > $time&&$sig_endtime < $time) {
  51. $status = 1;
  52. }
  53. if ($av_statime < $time && $av_endtime > $time) {
  54. $status = 5;
  55. }
  56. if ($av_endtime < $time) {
  57. $status = 6;
  58. }
  59. if(isset($status)) {
  60. Db::name('store_activity')->where('id', $id)->update(['status' => $status]);
  61. return $status;
  62. }
  63. return $avtivity['status'];
  64. }
  65. /**
  66. * 获取系统配置
  67. * @param $array
  68. * @return array
  69. * @throws \think\db\exception\DataNotFoundException
  70. * @throws \think\db\exception\ModelNotFoundException
  71. * @throws \think\exception\DbException
  72. */
  73. function getConfig($array)
  74. {
  75. $set = Db::table('system_config')->where('name', 'in', $array)->select();
  76. $ret = [];
  77. foreach ($set as $value) {
  78. $ret[$value['name']] = $value['value'];
  79. }
  80. return $ret;
  81. }
  82. /**
  83. * 是不是关注好友
  84. * @param $array
  85. * @throws \think\db\exception\DataNotFoundException
  86. * @throws \think\db\exception\ModelNotFoundException
  87. * @throws \think\exception\DbException
  88. */
  89. function is_follow($mid, $fid)
  90. {
  91. $set = Db::table('store_member_follow')->where(array('mid' => $mid, 'fid' => $fid))->find();
  92. $ret = 0;
  93. if ($set) $ret = 1;
  94. return $ret;
  95. }/**
  96. * 论坛是不是点赞了
  97. * @throws \think\db\exception\DataNotFoundException
  98. * @throws \think\db\exception\ModelNotFoundException
  99. * @throws \think\exception\DbException
  100. */
  101. function is_give($mid,$fid)
  102. {
  103. $set = Db::table('store_forum_give')->where(array('m_id' => $mid, 'f_id' => $fid))->find();
  104. $ret = 0;
  105. if ($set) $ret = 1;
  106. return $ret;
  107. }
  108. function is_interested($mid,$fid){
  109. $set = Db::table('store_member_interested')->where(array('mid'=>$mid,'i_id'=>$fid))->find();
  110. $ret = 0;
  111. if ($set) $ret = 1;
  112. return $ret;
  113. }
  114. /**
  115. * 地址名
  116. * @param $array
  117. * @throws \think\db\exception\DataNotFoundException
  118. * @throws \think\db\exception\ModelNotFoundException
  119. * @throws \think\exception\DbException
  120. */
  121. function areaname($pid)
  122. {
  123. $set = Db::table('store_area')->where('id',$pid)->value('shortname');
  124. return $set;
  125. }
  126. /**
  127. * @param $mid
  128. * @param $aid
  129. * @return int
  130. * @throws \think\db\exception\DataNotFoundException
  131. * @throws \think\db\exception\ModelNotFoundException
  132. * @throws \think\exception\DbException
  133. * 是否报名
  134. */
  135. function is_sing($mid,$aid){
  136. $is_sing = Db::name('store_activity_sing')->where(array('a_id'=>$aid,'m_id'=>$mid))->find();
  137. $is_sig=2;
  138. if($is_sing){
  139. $is_sig = 1;
  140. }
  141. return $is_sig;
  142. }
  143. /**
  144. * 获取单个系统配置信息
  145. */
  146. function getConfigValue($name){
  147. return Db::name('system_config')->where('name',$name)->value('value');
  148. }
  149. function get_order_sn(){
  150. $order_id_main = date('YmdHis') . rand(10000000,99999999);
  151. $order_id_len = strlen($order_id_main);
  152. $order_id_sum = 0;
  153. for($i=0; $i<$order_id_len; $i++){
  154. $order_id_sum += (int)(substr($order_id_main,$i,1));
  155. }
  156. $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
  157. return $osn;
  158. }
  159. /**
  160. * 生成二维码
  161. */
  162. function setqrcode($value,$name){
  163. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/user';
  164. if(!file_exists($dir)){
  165. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  166. mkdir($dir, 0700,true);
  167. }
  168. $filename = $dir.'/'.$name.'.png';
  169. QRcode::png($value,$filename,QR_ECLEVEL_L,7);
  170. $storage_type = getConfigValue('storage_type');
  171. if ($storage_type == 'oss'){
  172. $ossClient = new OssClient(getConfigValue('storage_oss_keyid'), getConfigValue('storage_oss_secret'), getConfigValue('storage_oss_endpoint'));
  173. $file_path = dirname($_SERVER['SCRIPT_FILENAME']) . "/user/".$name.".png";
  174. $newName = date('Ymd').'/'.get_order_sn().'.png';
  175. $result = $ossClient->uploadFile(getConfigValue('storage_oss_bucket'), $newName, $file_path);
  176. $url = $result['info']['url'];
  177. unlink($file_path);
  178. }else{
  179. $url = 'https://'.$_SERVER['SERVER_NAME']."/user/".$name.'.png';
  180. }
  181. return $url;
  182. }
  183. //生成报名二维码
  184. function setintivecode($id){
  185. $name = $id."_".time();
  186. https://xiangqin.zhousi.hdlkeji.com/h5/#/
  187. $address = 'https://'.$_SERVER['SERVER_NAME'].'/h5/#/pages/index/index?id='.$id;
  188. $url = setqrcode($address,$name);
  189. return $url;
  190. }
  191. //生成邀请二维码
  192. function setsingcode($id){
  193. $name = $id."_".time();
  194. $address = 'https://'.$_SERVER['SERVER_NAME'].'/h5/#/pages/index/sing?id='.$id;
  195. $url = setqrcode($address,$name);
  196. return $url;
  197. }
  198. function gettag($mid,$now){
  199. if ($now<10){
  200. $re = $mid.'000'.$now;
  201. }elseif ($now>=10 && $now<100){
  202. $re = $mid.'00'.$now;
  203. }elseif ($now>=100 && $now<1000){
  204. $re = $mid.'0'.$now;
  205. }else{
  206. $re = $mid.$now;
  207. }
  208. return $re;
  209. }
  210. function curl_post($url,$data){
  211. $headerArray =array("Content-type:application/json;charset='utf-8'","Accept:application/json");
  212. $curl = curl_init();
  213. curl_setopt($curl, CURLOPT_URL, $url);
  214. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  215. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
  216. curl_setopt($curl, CURLOPT_POST, 1);
  217. curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
  218. curl_setopt($curl,CURLOPT_HTTPHEADER,$headerArray);
  219. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  220. $output = curl_exec($curl);
  221. curl_close($curl);
  222. }
  223. /**
  224. * @param $url
  225. * @param array $headers
  226. * @param array $body
  227. * @param string $method
  228. * @return bool|string
  229. */
  230. function curlRequest($url, $headers = [], $body = [], $method = "GET")
  231. {
  232. $ch = curl_init();
  233. curl_setopt($ch, CURLOPT_URL, $url);
  234. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
  235. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
  236. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
  237. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  238. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  239. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  240. curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
  241. $output = curl_exec($ch);
  242. curl_close($ch);
  243. return $output;
  244. }
  245. function vip_level($mid){
  246. $vip = Db::name('store_member')->where('id',$mid)->value('vip_level');
  247. return $vip;
  248. }
  249. /**
  250. * @param $education
  251. * @return false|string
  252. * 学历筛选
  253. */
  254. function education($education){
  255. if($education=='高中')
  256. {
  257. $data =array('高中','大专','本科','研究生','博士');
  258. }
  259. if($education=='大专')
  260. {
  261. $data =array('高中','大专','本科','研究生','硕士','博士');
  262. }
  263. if($education=='本科')
  264. {
  265. $data =array('大专','本科','研究生','博士');
  266. }
  267. if($education=='研究生')
  268. {
  269. $data =array('研究生','博士');
  270. }if($education=='博士')
  271. {
  272. $data =array('博士');
  273. }
  274. return json_encode($data);
  275. }
  276. function common_url(){
  277. $http_type = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') || (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')) ? 'https://' : 'http://';
  278. return $http_type . $_SERVER['HTTP_HOST'];
  279. }