会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
鲨鱼大王
博客园
首页
新随笔
联系
管理
订阅
06 2021 档案
Mysql 主从配置
摘要:Mysql 主从配置 Mysql的主从复制至少是需要两个Mysql的服务,当然Mysql的服务是可以分布在不同的服务器上,也可以在一台服务器上启动多个服务。 首先确保主从服务器上的Mysql版本相同。 一、安装部署mysql 1、 安装服务器端:yum install mysql-server yu
阅读全文
posted @
2021-06-16 14:36
鲨鱼大王
阅读(876)
评论(0)
推荐(1)
ELK搭建
摘要:一、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
鲨鱼大王
PHP 删除指定标签内容
摘要:/** * 删除指定标签内容 * @param string $str html字符串 * @return mixed */ function stripHtmlTags($str) { $html = []; $html[] = '#<div class="func"[^>]*>[\s\S]*?<
阅读全文
posted @
2021-06-08 09:45
鲨鱼大王
阅读(123)
评论(0)
推荐(0)
PHP 日期时间转换为Y-m-d h:i:s格式
摘要:/** * @desc 日期时间转换为Y-m-d h:i:s格式 * @param $date string 要转换的日期 * @return $time string 时间字符串 **/ function datetotime($date) { //将日期时间按照格式转换为时间数组 $timear
阅读全文
posted @
2021-06-08 09:42
鲨鱼大王
阅读(1005)
评论(0)
推荐(0)
PHP 模糊图片
摘要:/** 图片局部打马赛克 * @param String $source 原图 * @param Stirng $dest 生成的图片 * @param int $x1 起点横坐标 * @param int $y1 起点纵坐标 * @param int $x2 终点横坐标 * @param int
阅读全文
posted @
2021-06-08 09:41
鲨鱼大王
阅读(105)
评论(0)
推荐(0)
PHP 剪切图片
摘要:/** * [tailoringImg 去除图片左下角的水印部分] * @param string $file_path [图片路径] * @param int $save_width 保存图片宽度 * @param int $start_spot_x 开始剪切的X坐标 * @param int $
阅读全文
posted @
2021-06-08 09:39
鲨鱼大王
阅读(167)
评论(0)
推荐(0)
公告