common.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. use think\Db;
  12. use cmf\lib\Storage;
  13. // 应用公共文件
  14. error_reporting(E_ERROR | E_WARNING | E_PARSE);
  15. require_once dirname(__FILE__).'/redis.php';
  16. /**
  17. * 获取当前登录的管事员id
  18. * @return int
  19. */
  20. function get_current_admin_id(){
  21. return session('ADMIN_ID');
  22. }
  23. /* 去除NULL 判断空处理 主要针对字符串类型*/
  24. function checkNull($checkstr){
  25. $checkstr=trim($checkstr);
  26. $checkstr=urldecode($checkstr);
  27. if( strstr($checkstr,'null') || (!$checkstr && $checkstr!=0 ) ){
  28. $str='';
  29. }else{
  30. $str=$checkstr;
  31. }
  32. $str=htmlspecialchars($str);
  33. return $str;
  34. }
  35. /* 检验手机号 */
  36. function checkMobile($mobile){
  37. $ismobile = preg_match("/^1[3|4|5|6|7|8|9]\d{9}$/",$mobile);
  38. if($ismobile){
  39. return 1;
  40. }
  41. return 0;
  42. }
  43. /* 去除emoji表情 */
  44. function filterEmoji($str){
  45. $str = preg_replace_callback(
  46. '/./u',
  47. function (array $match) {
  48. return strlen($match[0]) >= 4 ? '' : $match[0];
  49. },
  50. $str);
  51. return $str;
  52. }
  53. /**
  54. * 转化数据库保存的文件路径,为可以访问的url
  55. */
  56. function get_upload_path($file){
  57. if($file==''){
  58. return $file;
  59. }
  60. $configpri=getConfigPri();
  61. if(strpos($file,"http")===0){
  62. //将字符串分隔
  63. $file_arr=explode('%@%cloudtype=',$file);
  64. $cloudtype=$file_arr['1'];
  65. $file=$file_arr['0'];
  66. if(!isset($cloudtype)){
  67. return html_entity_decode($file);
  68. }
  69. if($cloudtype==1){ //存储方式为七牛
  70. return html_entity_decode($file);
  71. }else{
  72. return html_entity_decode($file);
  73. }
  74. }else if(strpos($file,"/")===0){
  75. $filepath= cmf_get_domain().$file;
  76. return $filepath;
  77. }else{
  78. //将字符串分隔
  79. $file_arr=explode('%@%cloudtype=',$file);
  80. $cloudtype=$file_arr['1'];
  81. $file=$file_arr['0'];
  82. if($cloudtype==1){ //七牛存储
  83. $space_host=$configpri['qiniu_protocol']."://".$configpri['qiniu_domain']."/";
  84. }else{
  85. $space_host="http://";
  86. }
  87. $filepath=$space_host.$file;
  88. if(!isset($cloudtype)){
  89. return html_entity_decode($filepath);
  90. }
  91. if($cloudtype==2 && $configpri['tx_private_signature']){ //腾讯云存储 且 需要签名验证
  92. return setTxUrl(html_entity_decode($filepath)); //腾讯云存储为私有读写时需要调用该方法获取签名验证
  93. }else{
  94. return html_entity_decode($filepath);
  95. }
  96. }
  97. }
  98. /* 公共配置 */
  99. function getConfigPub() {
  100. $key='getConfigPub';
  101. $config=getcaches($key);
  102. $config=false;
  103. if(!$config){
  104. $config= cmf_get_option('site_info', $options);
  105. setcaches($key,$config);
  106. }
  107. return $config;
  108. }
  109. /* 获取私密配置 */
  110. function getConfigPri() {
  111. $key='getConfigPri';
  112. $config=getcaches($key);
  113. $config=false;
  114. if(!$config){
  115. $config=cmf_get_option('configpri');
  116. setcaches($key,$config);
  117. }
  118. return $config;
  119. }
  120. /* 判断token */
  121. function checkToken($uid,$token) {
  122. if($uid<1 || $token==''){
  123. return 700;
  124. }
  125. $key="token_".$uid;
  126. $userinfo=getCache($key);
  127. if(!$userinfo){
  128. $userinfo=Db::name('user_token')
  129. ->field('token,expire_time')
  130. ->where(['user_id'=>$uid])
  131. ->find();
  132. if($userinfo){
  133. setCache($key,$userinfo);
  134. }
  135. }
  136. if(!$userinfo || $userinfo['token']!=$token || $userinfo['expire_time']<time()){
  137. return 700;
  138. }
  139. return 0;
  140. }
  141. /* 用户基本信息 */
  142. function getUserInfo($uid) {
  143. $info= Db::name("user")
  144. ->field("id,user_nicename,avatar,avatar_thumb,sex,signature,province,city,birthday,user_status")
  145. ->where("id='{$uid}'")
  146. ->find();
  147. if($info){
  148. $info['avatar']=get_upload_path($info['avatar']);
  149. $info['avatar_thumb']=get_upload_path($info['avatar_thumb']);
  150. }
  151. return $info;
  152. }
  153. function getLength($time,$type=0){
  154. if(!$time){
  155. return (string)$time;
  156. }
  157. $value = array(
  158. "years" => 0,
  159. "days" => 0,
  160. "hours" => 0,
  161. "minutes" => 0,
  162. "seconds" => 0
  163. );
  164. if($time >= 31556926){
  165. $value["years"] = floor($time/31556926);
  166. $time = ($time%31556926);
  167. }
  168. if($time >= 86400){
  169. $value["days"] = floor($time/86400);
  170. $time = ($time%86400);
  171. }
  172. if($time >= 3600){
  173. $value["hours"] = floor($time/3600);
  174. $time = ($time%3600);
  175. }
  176. if($time >= 60){
  177. $value["minutes"] = floor($time/60);
  178. $time = ($time%60);
  179. }
  180. $value["seconds"] = floor($time);
  181. if($value['years']){
  182. if($type==1&&$value['years']<10){
  183. $value['years']='0'.$value['years'];
  184. }
  185. }
  186. if($value['days']){
  187. if($type==1&&$value['days']<10){
  188. $value['days']='0'.$value['days'];
  189. }
  190. }
  191. if($value['hours']){
  192. if($type==1&&$value['hours']<10){
  193. $value['hours']='0'.$value['hours'];
  194. }
  195. }
  196. if($value['minutes']){
  197. if($type==1&&$value['minutes']<10){
  198. $value['minutes']='0'.$value['minutes'];
  199. }
  200. }
  201. if($value['seconds']){
  202. if($type==1&&$value['seconds']<10){
  203. $value['seconds']='0'.$value['seconds'];
  204. }
  205. }
  206. if($value['years']){
  207. $t=$value["years"] ."年".$value["days"] ."天". $value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  208. }else if($value['days']){
  209. $t=$value["days"] ."天". $value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  210. }else if($value['hours']){
  211. $t=$value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  212. }else if($value['minutes']){
  213. $t=$value["minutes"] ."分".$value["seconds"]."秒";
  214. }else if($value['seconds']){
  215. $t=$value["seconds"]."秒";
  216. }
  217. return $t;
  218. }
  219. /**导出Excel 表格
  220. * @param $expTitle 名称
  221. * @param $expCellName 参数
  222. * @param $expTableData 内容
  223. * @throws \PHPExcel_Exception
  224. * @throws \PHPExcel_Reader_Exception
  225. */
  226. function exportExcel($expTitle,$expCellName,$expTableData,$cellName){
  227. //$xlsTitle = iconv('utf-8', 'gb2312', $expTitle);//文件名称
  228. $xlsTitle = $expTitle;//文件名称
  229. $fileName = $xlsTitle.'_'.date('YmdHis');//or $xlsTitle 文件名称可根据自己情况设定
  230. $cellNum = count($expCellName);
  231. $dataNum = count($expTableData);
  232. $path= CMF_ROOT.'sdk/PHPExcel/';
  233. require_once( $path ."PHPExcel.php");
  234. $objPHPExcel = new \PHPExcel();
  235. $objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(10);
  236. for($i=0;$i<$cellNum;$i++){
  237. $objPHPExcel->setActiveSheetIndex(0)->setCellValue($cellName[$i].'1', $expCellName[$i][1]);
  238. }
  239. for($i=0;$i<$dataNum;$i++){
  240. for($j=0;$j<$cellNum;$j++){
  241. $objPHPExcel->getActiveSheet(0)->setCellValue($cellName[$j].($i+2), filterEmoji( $expTableData[$i][$expCellName[$j][0]] ) );
  242. }
  243. }
  244. header('pragma:public');
  245. header('Content-type:application/vnd.ms-excel;charset=utf-8;name="'.$xlsTitle.'.xlsx"');
  246. header("Content-Disposition:attachment;filename={$fileName}.xlsx");//attachment新窗口打印inline本窗口打印
  247. $objWriter = \PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');//Excel5为xls格式,excel2007为xlsx格式
  248. $objWriter->save('php://output');
  249. exit;
  250. }
  251. function get_file_suffix($file_name, $allow_type = array()){
  252. $fnarray=explode('.', $file_name);
  253. $file_suffix = strtolower(end($fnarray));
  254. if (empty($allow_type)){
  255. return true;
  256. }else{
  257. if (in_array($file_suffix, $allow_type)){
  258. return true;
  259. }else{
  260. return false;
  261. }
  262. }
  263. }
  264. /*
  265. 单文件云存储
  266. files 单个文件上传信息(包含键值) $files['file']=$_FILES["file"]
  267. type 文件类型 img图片 video视频 music音乐
  268. */
  269. function adminUploadFilesBF($files='',$type="video"){
  270. $rs=array('code'=>1000,'data'=>[],'msg'=>'上传失败');
  271. //获取后台上传配置
  272. $configpri=getConfigPri();
  273. if($configpri['cloudtype']==1){ //七牛云存储
  274. require_once CMF_ROOT.'sdk/qiniu/autoload.php';
  275. // 需要填写你的 Access Key 和 Secret Key
  276. $accessKey = $configpri['qiniu_accesskey'];
  277. $secretKey = $configpri['qiniu_secretkey'];
  278. $bucket = $configpri['qiniu_bucket'];
  279. $qiniu_domain_url = $configpri['qiniu_domain_url'];
  280. // 构建鉴权对象
  281. $auth = new \Qiniu\Auth($accessKey, $secretKey);
  282. // 生成上传 Token
  283. $token = $auth->uploadToken($bucket);
  284. // 要上传文件的本地路径
  285. $filePath = $files['file']['tmp_name'];
  286. // 上传到七牛后保存的文件名
  287. $ext=strtolower(pathinfo($files['file']['name'], PATHINFO_EXTENSION));
  288. $key = date('Ymd').'/'.uniqid().'.'.$ext;
  289. // 初始化 UploadManager 对象并进行文件的上传。
  290. $uploadMgr = new \Qiniu\Storage\UploadManager();
  291. // 调用 UploadManager 的 putFile 方法进行文件的上传。
  292. list($ret, $err) = $uploadMgr->putFile($token, $key, $filePath);
  293. if($err !== null){
  294. $rs['msg']=$err->getResponse()->error;
  295. return $rs;
  296. }
  297. $url=$key;
  298. $url_p=$qiniu_domain_url.$key;
  299. }
  300. $rs['code']=0;
  301. $rs['data']['url']=$url;
  302. $rs['data']['url_p']=$url_p;
  303. return $rs;
  304. }
  305. /*
  306. 单文件云存储
  307. files 单个文件上传信息(包含键值) $files['file']=$_FILES["file"]
  308. type 文件类型 img图片 video视频 music音乐
  309. */
  310. function adminUploadFiles($files='',$type="video"){
  311. $name=$files["file"]['name'];
  312. $pathinfo=pathinfo($name);
  313. if(!isset($pathinfo['extension'])){
  314. $files["file"]['name']=$name.'.jpg';
  315. }
  316. $rs=array('code'=>1000,'data'=>[],'msg'=>'上传失败');
  317. //获取后台上传配置
  318. $configpri=getConfigPri();
  319. $cloudtype=$configpri['cloudtype'];
  320. if($cloudtype==1){ //七牛云存储
  321. require_once CMF_ROOT.'sdk/qiniu/autoload.php';
  322. // 需要填写你的 Access Key 和 Secret Key
  323. $accessKey = $configpri['qiniu_accesskey'];
  324. $secretKey = $configpri['qiniu_secretkey'];
  325. $bucket = $configpri['qiniu_bucket'];
  326. /* $qiniu_domain_url = $configpri['qiniu_domain_url']; */
  327. $qiniu_domain_url = $configpri['qiniu_protocol']."://".$configpri['qiniu_domain']."/";
  328. // 构建鉴权对象
  329. $auth = new \Qiniu\Auth($accessKey, $secretKey);
  330. // 生成上传 Token
  331. $token = $auth->uploadToken($bucket);
  332. // 要上传文件的本地路径
  333. $filePath = $files['file']['tmp_name'];
  334. // 上传到七牛后保存的文件名
  335. $ext=strtolower(pathinfo($files['file']['name'], PATHINFO_EXTENSION));
  336. $key = date('Ymd').'/'.uniqid().'.'.$ext;
  337. // 初始化 UploadManager 对象并进行文件的上传。
  338. $uploadMgr = new \Qiniu\Storage\UploadManager();
  339. // 调用 UploadManager 的 putFile 方法进行文件的上传。
  340. list($ret, $err) = $uploadMgr->putFile($token, $key, $filePath);
  341. if($err !== null){
  342. $rs['msg']=$err->getResponse()->error;
  343. return $rs;
  344. }
  345. $url=$qiniu_domain_url.$key;
  346. $url_p=$key;
  347. }
  348. $rs['code']=0;
  349. $rs['data']['url']=$url_p;
  350. $rs['data']['url_p']=setCloudType($url_p); //设置存储方式
  351. $rs['data']['url_c']=$url;
  352. $tx_private_signature=$configpri['tx_private_signature'];
  353. if($cloudtype==2 && $tx_private_signature){ //腾讯存储桶为私有读 需要进行文件验证签名
  354. $rs['data']['url_c']=setTxUrl($url_p); //签名地址
  355. }
  356. //return $rs;
  357. //同步Upload.php返回格式
  358. return [
  359. 'filepath' => $rs['data']['url_p'], //带存储方式的【存储用】
  360. "name" => '',
  361. 'id' => time().rand(1,99),
  362. 'preview_url' =>$rs['data']['url_c'], //带签名的【展示用】
  363. 'url' => $rs['data']['url_c'],
  364. 'code' =>0
  365. ];
  366. }
  367. /* 数字格式化 */
  368. function NumberFormat($num){
  369. if($num<10000){
  370. }else if($num<1000000){
  371. $num=round($num/10000,2).'万';
  372. }else if($num<100000000){
  373. $num=round($num/10000,1).'万';
  374. }else if($num<10000000000){
  375. $num=round($num/100000000,2).'亿';
  376. }else{
  377. $num=round($num/100000000,1).'亿';
  378. }
  379. return $num;
  380. }
  381. /* 生成邀请码 */
  382. function createCode(){
  383. $code = 'ABCDEFGHIJKLMNPQRSTUVWXYZ';
  384. $rand = $code[rand(0,25)]
  385. .strtoupper(dechex(date('m')))
  386. .date('d').substr(time(),-5)
  387. .substr(microtime(),2,5)
  388. .sprintf('%02d',rand(0,99));
  389. for(
  390. $a = md5( $rand, true ),
  391. $s = '123456789ABCDEFGHIJKLMNPQRSTUV',
  392. $d = '',
  393. $f = 0;
  394. $f < 6;
  395. $g = ord( $a[ $f ] ),
  396. $d .= $s[ ( $g ^ ord( $a[ $f + 6 ] ) ) - $g & 0x1F ],
  397. $f++
  398. );
  399. if(mb_strlen($d)==6){
  400. $oneinfo=Db::name("user")->field("id")->where("code='{$d}'")->find();
  401. if(!$oneinfo){
  402. return $d;
  403. }
  404. }
  405. $d=createCode();
  406. return $d;
  407. }
  408. function m_s($a){
  409. return $a;
  410. $url=$_SERVER['HTTP_HOST'];
  411. $domain=cmf_get_domain();
  412. $domain=str_replace("https://", '', $domain);
  413. $domain=str_replace("http://", '', $domain);
  414. if($url==$domain){
  415. $l=strlen($a);
  416. $sl=$l-6;
  417. $s='';
  418. for($i=0;$i<$sl;$i++){
  419. $s.='*';
  420. }
  421. $rs=substr_replace($a,$s,3,$sl);
  422. return $rs;
  423. }
  424. return $a;
  425. }
  426. //为文件拼接存储方式,方便get_upload_path做签名处理
  427. function setCloudType($url){
  428. $configpri=getConfigPri();
  429. $cloudtype=$configpri['cloudtype'];
  430. //file_put_contents("zzza.txt", $url);
  431. $url=$url."%@%cloudtype=".$cloudtype;
  432. //file_put_contents("zzz.txt", $url);
  433. return $url;
  434. }
  435. //获取粉丝数量
  436. function getFans($uid){
  437. $count=Db::name("user_attention")->where("touid={$uid}")->count();
  438. return $count;
  439. }
  440. //判断用户是否注销
  441. function checkIsDestroy($uid){
  442. $user_status=Db::name("user")->where("id={$uid}")->value('user_status');
  443. if($user_status==3){
  444. return 1;
  445. }
  446. return 0;
  447. }
  448. //身份证检测
  449. function checkCardNo($cardno){
  450. $preg='/^(^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$)|(^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])((\d{4})|\d{3}[Xx])$)$/';
  451. $isok=preg_match($preg, $cardno);
  452. if($isok){
  453. return 1;
  454. }else{
  455. return 0;
  456. }
  457. }
  458. /* ip限定 */
  459. function ip_limit(){
  460. $configpri=getConfigPri();
  461. if($configpri['iplimit_switch']==0){
  462. return 0;
  463. }
  464. $date = date("Ymd");
  465. $ip= ip2long($_SERVER["REMOTE_ADDR"]);
  466. $isexist=Db::name("getcode_limit_ip")
  467. ->field("ip,date,times")
  468. ->where("ip={$ip}")
  469. ->find();
  470. if(!$isexist){
  471. $data=array(
  472. "ip" => $ip,
  473. "date" => $date,
  474. "times" => 1,
  475. );
  476. $isexist=Db::name("getcode_limit_ip")->insert($data);
  477. return 0;
  478. }elseif($date == $isexist['date'] && $isexist['times'] >= $configpri['iplimit_times'] ){
  479. return 1;
  480. }else{
  481. if($date == $isexist['date']){
  482. $isexist=Db::name("getcode_limit_ip")
  483. ->where("ip={$ip}")
  484. ->setInc("times",1);
  485. return 0;
  486. }else{
  487. $isexist=Db::name("getcode_limit_ip")
  488. ->where("ip={$ip}")
  489. ->update(array('date'=> $date ,'times'=>1));
  490. return 0;
  491. }
  492. }
  493. }
  494. /* 随机数 */
  495. function random($length = 6 , $numeric = 0) {
  496. PHP_VERSION < '4.2.0' && mt_srand((double)microtime() * 1000000);
  497. if($numeric) {
  498. $hash = sprintf('%0'.$length.'d', mt_rand(0, pow(10, $length) - 1));
  499. } else {
  500. $hash = '';
  501. $chars = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789abcdefghjkmnpqrstuvwxyz';
  502. $max = strlen($chars) - 1;
  503. for($i = 0; $i < $length; $i++) {
  504. $hash .= $chars[mt_rand(0, $max)];
  505. }
  506. }
  507. return $hash;
  508. }
  509. /* 发送验证码 -- 阿里云 */
  510. function sendCode($mobile,$code){
  511. $rs = array('code' => 0, 'msg' => '', 'info' => array());
  512. $config = getConfigPri();
  513. if(!$config['sendcode_switch']){
  514. $rs['code']=667;
  515. $rs['msg']='123456';
  516. return $rs;
  517. }
  518. $rs=sendCodeByAli($mobile,$code);
  519. return $rs;
  520. }
  521. //阿里云短信
  522. function sendCodeByAli($mobile,$code){
  523. $rs = array('code' => 0, 'msg' => '', 'info' => array());
  524. $configpri = getConfigPri();
  525. require_once CMF_ROOT.'sdk/aliyunsms/AliSmsApi.php';
  526. $config = array(
  527. 'accessKeyId' =>$configpri['aly_keydi'],
  528. 'accessKeySecret' =>$configpri['aly_secret'],
  529. 'PhoneNumbers' => $mobile,
  530. 'SignName' => $configpri['aly_signName'],
  531. 'TemplateCode' => $configpri['aly_templateCode'],
  532. 'TemplateParam' => array("code"=>$code)
  533. );
  534. $go = new \AliSmsApi($config);
  535. $result = $go->send_sms();
  536. file_put_contents(CMF_ROOT.'log/sendCode_aly_'.date('Y-m-d').'.txt',date('Y-m-d H:i:s').' 提交参数信息 result:'.json_encode($result)."\r\n",FILE_APPEND);
  537. if($result == NULL ) {
  538. $rs['code']=1002;
  539. $rs['msg']="发送失败";
  540. return $rs;
  541. }
  542. if($result['Code']!='OK') {
  543. //TODO 添加错误处理逻辑
  544. $rs['code']=1002;
  545. $rs['msg']="获取失败";
  546. return $rs;
  547. }
  548. return $rs;
  549. }
  550. /* 检测用户是否存在 */
  551. function checkUser($where){
  552. if(!$where){
  553. return 0;
  554. }
  555. $isexist=Db::name('user')->field('id')->where($where)->find();
  556. if($isexist){
  557. return 1;
  558. }
  559. return 0;
  560. }
  561. /* 管理员操作日志 */
  562. function setAdminLog($action){
  563. $data=array(
  564. 'adminid'=>session('ADMIN_ID'),
  565. 'admin'=>session('name'),
  566. 'action'=>$action,
  567. 'ip'=>ip2long(get_client_ip(0,true)),
  568. 'addtime'=>time(),
  569. );
  570. Db::name("admin_log")->insert($data);
  571. return !0;
  572. }