上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 67 下一页
摘要: 一、下载Qconf的zip包 1.进入github地址:https://github.com/Qihoo360/QConf,下载zip包文件,并上传至服务器二、安装QConf 三、安装QConf php扩展安装 qconf.so //就会在php的扩展目录/usr/local/php/extensi 阅读全文
posted @ 2018-10-26 19:49 温柔的风 阅读(1311) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-10-25 00:08 温柔的风 阅读(0) 评论(0) 推荐(0) 编辑
摘要: https://cloud.tencent.com/developer/article/1167951 php错误日志总结 https://cloud.tencent.com/developer/article/1148532 PHP错误日志,解决不显示不记录日志文件等疑难杂症 阅读全文
posted @ 2018-10-24 22:05 温柔的风 阅读(187) 评论(0) 推荐(0) 编辑
摘要: redis队列,使用了list列表数据结构,lpush生成,rpop消费模式。 redis队列,使用了list列表数据结构,lpush生成,rpop消费模式。 队列处理命令 <queue_name>是队列的名称,例如:current, position等等, 这只是消费者,即队列处理程序。 这是一个 阅读全文
posted @ 2018-10-23 14:19 温柔的风 阅读(313) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-10-22 23:18 温柔的风 阅读(0) 评论(0) 推荐(0) 编辑
摘要: func trimHtml(src string) string { //将HTML标签全转换成小写 re, _ := regexp.Compile("\\<[\\S\\s]+?\\>") src = re.ReplaceAllStringFunc(src, strings.ToLower) //去 阅读全文
posted @ 2018-10-21 18:43 温柔的风 阅读(3307) 评论(0) 推荐(0) 编辑
摘要: 根据个人开发习惯,把自定义的函数放在一个函数文件,这里我在beego项目的根目录下创建一个目录[utils]包用于放置公共函数,在目录下创建functions.go文件 //utils/functions.go 文件 package utils import ( "github.com/astaxi 阅读全文
posted @ 2018-10-21 10:54 温柔的风 阅读(958) 评论(0) 推荐(0) 编辑
摘要: 假如我们在需求中需要类似如下图格式的日期展示,那么我们可以利用golang自带的time包来格式化(format包) 包的路径:goroot/src/time/format.go,以下是包的所包括格式内容 const ( ANSIC = "Mon Jan _2 15:04:05 2006" Unix 阅读全文
posted @ 2018-10-20 21:43 温柔的风 阅读(1097) 评论(0) 推荐(0) 编辑
摘要: Oracle: select name from order where order_id in('111','222','333','444','555','666')order by instr('111,222,333,444,555,666',order_id); Mysql: 第一种:se 阅读全文
posted @ 2018-10-20 00:19 温柔的风 阅读(422) 评论(0) 推荐(0) 编辑
摘要: git clone 报错 Unable to negotiate with xxx.xxx.xxx.xxx. port 12345: no matching cipher found. Their offer: aes128-cbc,3des-cbc,blowfish-cbc 解决: 把以下代码放到 阅读全文
posted @ 2018-10-18 21:25 温柔的风 阅读(1854) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 67 下一页