上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
摘要: * * * * * xx xx >/dev/null 2>&1 阅读全文
posted @ 2017-02-19 14:46 loweringye 阅读(74) 评论(0) 推荐(0) 编辑
摘要: kill -9 ps -ef|grep php-fpm|grep -v grep|cut -c 9-15|xargs kill -9 阅读全文
posted @ 2017-02-18 23:36 loweringye 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1、parse用于从一个字符串中解析出json对象 2、stringify()用于从一个对象解析出字符串 阅读全文
posted @ 2017-02-17 14:58 loweringye 阅读(81) 评论(0) 推荐(0) 编辑
摘要: find ./ -name "*.php" | xargs grep '关键字' 原文地址: http://site.i3007.top/post_detail.html?id=84 阅读全文
posted @ 2017-02-14 14:00 loweringye 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 1、RFC3986 2、RFC1867协议介绍 阅读全文
posted @ 2016-11-23 11:39 loweringye 阅读(102) 评论(0) 推荐(0) 编辑
摘要: index.php <?php function test() { $fp=fsockopen("localhost", 80, $errno, $errstr, 30); if(!$fp){ echo "$errstr ($errno)<br />"; } sleep(1); fputs($fp, 阅读全文
posted @ 2016-11-07 15:23 loweringye 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 解决特殊字符不能转义 1、 function fixedEncodeURIComponent (str) { return encodeURIComponent(str).replace(/[!'()*]/g, function(c) { return '%' + c.charCodeAt(0).t 阅读全文
posted @ 2016-10-31 18:09 loweringye 阅读(850) 评论(0) 推荐(0) 编辑
摘要: 如&timestamp变成×tamp 阅读全文
posted @ 2016-10-31 16:58 loweringye 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 1、必须要退出wampserver 2、php pecl + 3、wampserver 64 3.0.6 阅读全文
posted @ 2016-10-27 20:50 loweringye 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1、客户端(浏览器输入网址)请求 2、发送http协议到web服务器(nginx),检测请求类别,如果时纯静态页面,则返响应返回给客户端。 3、如果有动态脚本(php语法)启动fastcgi进程,用解析器去处理程序,可能加载php模块处理sql程序,最后返回给web服务器,响应给客户端。 阅读全文
posted @ 2016-10-23 15:41 loweringye 阅读(167) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页