上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 33 下一页

2017年12月7日

Can't create a new thread (errno 11) 解决办法 mysql无法连接

摘要: 问题的现象: 错误信息: ERROR 1135 (00000): Can't create a new thread (errno 11); if you are not out of available memory, you can consult the manual for a possib 阅读全文

posted @ 2017-12-07 09:45 dongruiha 阅读(2563) 评论(0) 推荐(0) 编辑

2017年12月6日

linux计划任务以某个用户身份执行

摘要: # Example of job definition: # . minute (0 - 59) # | . hour (0 - 23) # | | . day of month (1 - 31) # | | | . month (1 - 12) OR jan,feb,mar,apr ... # | 阅读全文

posted @ 2017-12-06 09:04 dongruiha 阅读(3031) 评论(0) 推荐(0) 编辑

2017年12月1日

过滤emoji表情的方法

摘要: public static function replaceEmoji($str) { $str = preg_replace_callback( '/./u', function (array $match) { return strlen($match[0]) >= 4 ? '[表... 阅读全文

posted @ 2017-12-01 11:59 dongruiha 阅读(263) 评论(0) 推荐(0) 编辑

mysql中utf8和utf8mb4区别

摘要: 转自:http://ourmysql.com/archives/1402 MySQL在5.5.3之后增加了这个utf8mb4的编码,mb4就是most bytes 4的意思,专门用来兼容四字节的unicode。好在utf8mb4是utf8的超集,除了将编码改为utf8mb4外不需要做其他转换。当然, 阅读全文

posted @ 2017-12-01 08:58 dongruiha 阅读(156) 评论(0) 推荐(0) 编辑

2017年11月25日

js函数参数设置默认值

摘要: php有个很方便的用法是在定义函数时可以直接给参数设默认值,如: function simue ($a=1,$b=2){ return $a+$b;}echo simue(); //输出3echo simue(10); //输出12echo simue(10,20); //输出30但js却不能这么定 阅读全文

posted @ 2017-11-25 16:03 dongruiha 阅读(263) 评论(0) 推荐(0) 编辑

preg_replace修饰符e的用法

摘要: $tmp_refer = postget('refer');$tmp_refer = preg_replace("/tn-(.*?).html/ies", "'tn-'.urlencode(urldecode('$1')).'.html'", $tmp_refer);"'tn-'.urlencode 阅读全文

posted @ 2017-11-25 16:01 dongruiha 阅读(363) 评论(0) 推荐(0) 编辑

2017年11月17日

laravel原生sql

摘要: 转自:https://www.cnblogs.com/zouzhe0/p/6307077.html 阅读全文

posted @ 2017-11-17 10:56 dongruiha 阅读(682) 评论(0) 推荐(0) 编辑

2017年11月13日

缓存一致性和跨服务器查询的数据异构解决方案canal

摘要: 转自:https://www.cnblogs.com/huangxincheng/p/7456397.html 阅读全文

posted @ 2017-11-13 16:57 dongruiha 阅读(129) 评论(0) 推荐(0) 编辑

2017年11月1日

MySQL大小写敏感问题和命名规范

摘要: 转自:http://www.cnblogs.com/conanwang/p/5927557.html 1.MySQL大小写敏感规则 MySQL中,一个库会对应一个文件夹,库里的表会则以文件的方式存放在文件夹内,所以,操作系统对大小写的敏感性决定了数据库和表的大小写敏感(MySQL有一个只读的系统变量 阅读全文

posted @ 2017-11-01 18:57 dongruiha 阅读(627) 评论(0) 推荐(0) 编辑

2017年10月30日

laravel5.2总结

摘要: 转自:http://www.cnblogs.com/redirect/p/6178001.html 阅读全文

posted @ 2017-10-30 14:20 dongruiha 阅读(99) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 33 下一页

导航