common.php 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <?php
  2. use think\Db;
  3. /**
  4. * 压缩图片
  5. * @param $imgsrc 压缩图片地址
  6. * @param $imgdst 生成地址
  7. */
  8. function image_png_size_add($imgsrc,$imgdst){
  9. list($width,$height,$type)=getimagesize($imgsrc);
  10. // $new_width = ($width>600?600:$width)*0.9;
  11. // $new_height =($height>600?600:$height)*0.9;
  12. $new_width = $width;
  13. $new_height =$height;
  14. switch($type){
  15. case 1:
  16. break;
  17. case 2:
  18. header('Content-Type:image/jpeg');
  19. $image_wp=imagecreatetruecolor($new_width, $new_height);
  20. $image = imagecreatefromjpeg($imgsrc);
  21. imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
  22. imagejpeg($image_wp, $imgdst,config('quality'));
  23. imagedestroy($image_wp);
  24. break;
  25. case 3:
  26. header('Content-Type:image/png');
  27. $image_wp=imagecreatetruecolor($new_width, $new_height);
  28. $image = imagecreatefrompng($imgsrc);
  29. imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
  30. imagejpeg($image_wp, $imgdst,config('quality'));
  31. imagedestroy($image_wp);
  32. break;
  33. }
  34. }
  35. /**
  36. * 将字符解析成数组
  37. * @param $str
  38. */
  39. function parseParams($str)
  40. {
  41. $arrParams = [];
  42. parse_str(html_entity_decode(urldecode($str)), $arrParams);
  43. return $arrParams;
  44. }
  45. /**
  46. * 子孙树 用于菜单整理
  47. * @param $param
  48. * @param int $pid
  49. */
  50. function subTree($param, $pid = 0)
  51. {
  52. static $res = [];
  53. foreach($param as $key=>$vo){
  54. if( $pid == $vo['pid'] ){
  55. $res[] = $vo;
  56. subTree($param, $vo['id']);
  57. }
  58. }
  59. return $res;
  60. }
  61. /**
  62. * 记录日志
  63. * @param [type] $uid [用户id]
  64. * @param [type] $username [用户名]
  65. * @param [type] $description [描述]
  66. * @param [type] $status [状态] 200 操作成功 100 操作失败
  67. * @param [type] $type [删除日志启用]
  68. *///$uid,$username,$description,$status,$type=''
  69. function writelog($description,$status,$uid = '',$username = '',$type='')
  70. {
  71. $id = $uid ? $uid : session('uid');
  72. $name = $username ? : session('username');
  73. $ip = request()->ip();
  74. $ipaddr = get_ip_area($ip);//根据ip地址获取地域信息
  75. /****************************日志存入数据库*******************************/
  76. if($type == ''){
  77. $data['admin_id'] = $id;
  78. $data['admin_name'] = $name;
  79. $data['description'] = $description;
  80. $data['status'] = $status;
  81. $data['ip'] = $ip;
  82. $data['add_time'] = time();
  83. $data['ipaddr'] = $ipaddr;
  84. $logId = Db::name('Log')->insertGetId($data);
  85. }else{
  86. $logId = '空';
  87. }
  88. /****************************日志存入数据库*******************************/
  89. /****************************日志存入文件*******************************/
  90. if(config('log_std')){
  91. $dir = 'log/'.date('Ymd',time());
  92. if(!is_dir($dir)){
  93. if(!mkdir($dir,0777,true)){
  94. return false;
  95. }
  96. }
  97. $file = 'log/'.date('Ymd',time()).'/'.date('Ymd',time()).'.txt';
  98. if(!is_file($file)){
  99. $word=fopen($file,"a+");
  100. // fwrite($word,' ID +----------+ 用户ID +----------+ 操作用户 +----------+ 描述 +----------+ 操作IP +----------+ 地址 +----------+ 状态 +----------+ 操作时间');
  101. fwrite($word,"\r\n".'+-------------+--------------+--------------+----------------------------------------------------------+----------------------+-------------------+-----------------+-----------------------+');
  102. fwrite($word,"\r\n".'| | | | | | | | |');
  103. fwrite($word,"\r\n".'| ID | 用户ID | 操作用户 | 描述 | 操作IP | 地址 | 状态 | 操作时间 |');
  104. fwrite($word,"\r\n".'| | | | | | | | |');
  105. fwrite($word,"\r\n".'+-------------+--------------+--------------+----------------------------------------------------------+----------------------+-------------------+-----------------+-----------------------+');
  106. fclose($word);
  107. }
  108. $add_time=date('Y-m-d H:i:s',time());
  109. if($status == 200){
  110. $sta = '成功';
  111. }else{
  112. $sta = '失败';
  113. }
  114. file_put_contents($file, "\r\n ".$logId.' +----------+ '.$uid.' +----------+ '.$username.' +----------+ '.$description.' +----------+ '.$ip.' +----------+ '.$ipaddr.' +----------+ '.$sta.' +----------+ '.$add_time,FILE_APPEND);
  115. // file_put_contents($file, "\r\n".'| '.$logId.' '.$uid.' '.$username.' '.$description.' '.$ip.' '.$ipaddr['country'].$ipaddr['place'].' '.$sta.' '.$add_time.' |',FILE_APPEND);
  116. file_put_contents($file, "\r\n".'+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+',FILE_APPEND);
  117. }
  118. /****************************日志存入文件*******************************/
  119. }
  120. /**
  121. * 整理菜单树方法
  122. * @param $param
  123. * @return array
  124. */
  125. function prepareMenu($param)
  126. {
  127. // dump($param);die;
  128. $parent = []; //父类
  129. $child = []; //子类
  130. foreach($param as $key=>$vo) {
  131. if ( $vo[ 'pid' ] == 0 && $vo[ 'name' ] == '#' ) {
  132. $vo[ 'href' ] = '#';
  133. $parent[] = $vo;
  134. }else if($vo[ 'pid' ] == 0 && $vo[ 'name' ] != '#' ){
  135. if(!preg_match ("/^((https|http|ftp|rtsp|mms){0,1}(:\/\/){0,1})www\.(([A-Za-z0-9-~]+)\.)+([A-Za-z0-9-~\/])+$/",$vo['name'])){
  136. $vo[ 'href' ] = url($vo['name']); //跳转地址
  137. }else{
  138. $vo[ 'href' ] = $vo['name']; //跳转地址
  139. }
  140. $parent[] = $vo;
  141. }else{
  142. if(!preg_match ("/^((https|http|ftp|rtsp|mms){0,1}(:\/\/){0,1})www\.(([A-Za-z0-9-~]+)\.)+([A-Za-z0-9-~\/])+$/",$vo['name'])){
  143. $vo[ 'href' ] = url($vo['name']); //跳转地址
  144. }else{
  145. $vo[ 'href' ] = $vo['name']; //跳转地址
  146. }
  147. $child[] = $vo;
  148. }
  149. }
  150. foreach($parent as $key=>$vo){
  151. foreach($child as $k=>$v){
  152. if($v['pid'] == $vo['id']){
  153. $parent[$key]['child'][] = $v;
  154. }
  155. }
  156. }
  157. for($i=0;$i<count($parent);$i++){
  158. if(isset($parent[$i]['child'])){
  159. for($j=0;$j<count($parent[$i]['child']);$j++){
  160. if($parent[$i]['child'][$j]['name'] == '##'){
  161. for($a=0;$a<count($child);$a++){
  162. if($child[$a]['pid'] == $parent[$i]['child'][$j]['id']){
  163. $parent[$i]['child'][$j]['child'][] = $child[$a];
  164. }
  165. }
  166. }
  167. }
  168. }
  169. }
  170. unset($child);
  171. return $parent;
  172. }
  173. /**
  174. * 格式化字节大小
  175. * @param number $size 字节数
  176. * @param string $delimiter 数字和单位分隔符
  177. * @return string 格式化后的带单位的大小
  178. */
  179. function format_bytes($size, $delimiter = '') {
  180. $units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB'];
  181. for ($i = 0; $size >= 1024 && $i < 5; $i++) {
  182. $size /= 1024;
  183. }
  184. return $size . $delimiter . $units[$i];
  185. }
  186. // 分析枚举类型配置值 格式 a:名称1,b:名称2
  187. function parse_config_attr($string) {
  188. $array = preg_split('/[,;\r\n]+/', trim($string, ",;\r\n"));
  189. if(strpos($string,':')){
  190. $value = array();
  191. foreach ($array as $val) {
  192. list($k, $v) = explode(':', $val);
  193. $value[$k] = $v;
  194. }
  195. }else{
  196. $value = $array;
  197. }
  198. return $value;
  199. }
  200. /**
  201. * trim & explode
  202. * @param $d 符号
  203. * @param $str 字符串
  204. * @return array
  205. */
  206. function trim_explode($d,$str){
  207. $str = trim($str,$d);
  208. $res = explode($d,$str);
  209. return $res;
  210. }