上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页

2017年2月9日

摘要: #手下下载tar.gz包#首先手工建立mysql用户和用户组 > groupadd mysql > useradd -r -g mysql mysql#然后就是安装的解压 编译安装 > tar zxvf mysql-5.6.10.tar.gz > cd mysql-5.6.10 > cmake .  阅读全文
posted @ 2017-02-09 17:01 studyphp 阅读(189) 评论(0) 推荐(0) 编辑
摘要: <?php function aa($str) { $temp = array(); for ($i = 0; $i < strlen($str); $i++) { $t = $str[$i]; switch ($t) { case '(': array_push($temp, '('); ... 阅读全文
posted @ 2017-02-09 16:45 studyphp 阅读(437) 评论(0) 推荐(0) 编辑

2017年2月8日

摘要: 以上代码用来获取操作后的json 数据,传递给后台,进行数据排序处理。 以下为我的操作: 阅读全文
posted @ 2017-02-08 14:48 studyphp 阅读(623) 评论(0) 推荐(0) 编辑

2017年2月6日

摘要: 转载自51CTO 开发频道 1、图像基本处理:http://developer.51cto.com/art/201611/520928.htm 2、图像特效处理模块:http://developer.51cto.com/art/201611/520930.htm 3、图像属性处理:http://de 阅读全文
posted @ 2017-02-06 10:54 studyphp 阅读(552) 评论(0) 推荐(0) 编辑

2017年1月3日

摘要: php session 运营想让用户登陆网站就能永久保持登陆会话,感觉这是扯淡,因为视频播放1小时,所以我设置了两小时过期。 但是用户过多,导致session文件大量存储。产生上百万千万。服务器空间很快就不足。死机。 所以,要做定时清理 编辑一个sh 脚本 vi a.sh cd /tmp; find 阅读全文
posted @ 2017-01-03 12:03 studyphp 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://xuqq999.blog.51cto.com/3357083/774714 apache日志分析可以获得很多有用的信息,现在来试试最基本的,获取最多访问的前10个IP地址及访问次数。 既然是统计,那么awk是必不可少的,好用而高效。 命令如下: awk '{a[$1] += 阅读全文
posted @ 2017-01-03 11:42 studyphp 阅读(958) 评论(0) 推荐(0) 编辑
摘要: Nginx禁止ip访问可以防止指定IP访问我们的网站,本例子可以实现是防止单IP访问或IP网段访问了,非常的有用我们一起来看看吧。 Nginx禁止ip访问可以防止指定IP访问我们的网站,本例子可以实现是防止单IP访问或IP网段访问了,非常的有用我们一起来看看吧。 常用的linux做法 iptable 阅读全文
posted @ 2017-01-03 11:40 studyphp 阅读(13661) 评论(0) 推荐(0) 编辑

2016年12月28日

摘要: 今天发现Mysql的主从数据库没有同步 先上Master库: mysql>show processlist; 查看下进程是否Sleep太多。发现很正常。 show master status; 也正常。 mysql> show master status; + + + + + | File | Po 阅读全文
posted @ 2016-12-28 16:32 studyphp 阅读(142) 评论(0) 推荐(0) 编辑

2016年11月23日

摘要: try catch 比较坑,默认这样是走TP 的错误模板页面 自定义的话: 阅读全文
posted @ 2016-11-23 17:29 studyphp 阅读(764) 评论(0) 推荐(0) 编辑
摘要: $dst_path = './1.png'; $font_file = './ADOBEHEITISTD-REGULAR (V5.010).OTF'; $img_bg = imagecreatefrompng($dst_path); //打开图片, $bg_width = imagesx($img_bg); $clr = ImageColorAllocate($img_bg, 0xFF,0xFF... 阅读全文
posted @ 2016-11-23 17:27 studyphp 阅读(672) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页

导航