摘要: Mysql 主从配置 Mysql的主从复制至少是需要两个Mysql的服务,当然Mysql的服务是可以分布在不同的服务器上,也可以在一台服务器上启动多个服务。 首先确保主从服务器上的Mysql版本相同。 一、安装部署mysql 1、 安装服务器端:yum install mysql-server yu 阅读全文
posted @ 2021-06-16 14:36 鲨鱼大王 阅读(802) 评论(0) 推荐(1) 编辑
摘要: 一、ELK搭建篇 官网地址:https://www.elastic.co/cn/ 官网权威指南:https://www.elastic.co/guide/cn/elasticsearch/guide/current/index.html 安装指南:https://www.elastic.co/gui 阅读全文
posted @ 2021-06-16 14:23 鲨鱼大王 阅读(65) 评论(0) 推荐(0) 编辑
摘要: /** * 删除指定标签内容 * @param string $str html字符串 * @return mixed */ function stripHtmlTags($str) { $html = []; $html[] = '#<div class="func"[^>]*>[\s\S]*?< 阅读全文
posted @ 2021-06-08 09:45 鲨鱼大王 阅读(115) 评论(0) 推荐(0) 编辑
摘要: /** * @desc 日期时间转换为Y-m-d h:i:s格式 * @param $date string 要转换的日期 * @return $time string 时间字符串 **/ function datetotime($date) { //将日期时间按照格式转换为时间数组 $timear 阅读全文
posted @ 2021-06-08 09:42 鲨鱼大王 阅读(891) 评论(0) 推荐(0) 编辑
摘要: /** 图片局部打马赛克 * @param String $source 原图 * @param Stirng $dest 生成的图片 * @param int $x1 起点横坐标 * @param int $y1 起点纵坐标 * @param int $x2 终点横坐标 * @param int 阅读全文
posted @ 2021-06-08 09:41 鲨鱼大王 阅读(96) 评论(0) 推荐(0) 编辑
摘要: /** * [tailoringImg 去除图片左下角的水印部分] * @param string $file_path [图片路径] * @param int $save_width 保存图片宽度 * @param int $start_spot_x 开始剪切的X坐标 * @param int $ 阅读全文
posted @ 2021-06-08 09:39 鲨鱼大王 阅读(153) 评论(0) 推荐(0) 编辑
摘要: server { listen 80; listen 443 ssl; server_name api.xmzhishang.cn; ssl_protocols TLSv1.2 TLSv1.1 TLSv1; ssl_certificate /www/sites/cert/4622709_api.xm 阅读全文
posted @ 2020-10-15 09:46 鲨鱼大王 阅读(178) 评论(0) 推荐(0) 编辑
摘要: <form id="xml_config_search" action="upload" method="post" enctype="multipart/form-data"> {{ csrf_field() }} 选择文件:<input type="file" name="file" value 阅读全文
posted @ 2020-09-26 18:01 鲨鱼大王 阅读(1228) 评论(0) 推荐(0) 编辑
摘要: 1、下载 PHPExcel 直接去github下载 https://github.com/PHPOffice/PHPExcel 2、在 app 目录下新建 libs 目录,将下载的 PHPExcel 放入 libs 目录下,如下图 3、在项目根目录的 composer.json 文件中添加 "app 阅读全文
posted @ 2020-09-26 17:59 鲨鱼大王 阅读(201) 评论(0) 推荐(0) 编辑
摘要: /* *$path文件夹路径 *$filename压缩文件路径 */ public function zipupload($path,$filename,$f,$f2,$baseinfo){ $path = iconv("UTF-8", "GBK", $path);//加这行中文文件夹也ok了 $t 阅读全文
posted @ 2020-09-17 11:20 鲨鱼大王 阅读(814) 评论(0) 推荐(0) 编辑