我的小站
摘要: 这两天搞php运行环境搞的头大,好在现在终于调通了,可以正常进入断点了 现在记录一下,避免下次换机器忘记了 我的环境是wamp64+apache2.4.3+php5.6.25+mysql5.7.14 为了编写代码方便换了一个phpstorm ide 1.下载phpunit.phar(注意php的版本 阅读全文
posted @ 2018-03-09 18:20 nilz 阅读(1403) 评论(0) 推荐(0) 编辑
摘要: 普及:浏览器的兼容性问题,往往是个别浏览器(没错,就是那个与众不同的浏览器)对于一些标准的定义不一致导致的。俗话说:没有IE就没有伤害。 贴士:内容都是自己总结的,不免会出现错误或者bug,欢迎更正和补充,本帖也会不断更新。 Normalize.css 不同浏览器的默认样式存在差异,可以使用 Nor 阅读全文
posted @ 2017-08-30 10:47 nilz 阅读(1499) 评论(9) 推荐(2) 编辑
摘要: 好久没写过博客了,突然发现最后博客更新时间是2016年,感觉好长远 权限控制基本是所有cms系统或者进销存,或者几乎所有能和业务系统扯上关系的系统都要用上的一个模块,很多都想把这个模块独立出来,权限单独统一控制,所以就出现了aop及其他相关技术操作,当然我这里说aop只是说了aop的一种功能 我今天 阅读全文
posted @ 2017-08-29 11:22 nilz 阅读(961) 评论(0) 推荐(0) 编辑
摘要: private void btnStart_Click(object sender, EventArgs e) { var srcWords = ToDBC(txtSrc.Text.Trim()); var placeStr = R... 阅读全文
posted @ 2016-01-14 15:13 nilz 阅读(3492) 评论(0) 推荐(1) 编辑
摘要: CREATE TABLE `userinfo` ( `uid` INT(10) NOT NULL AUTO_INCREMENT, `username` VARCHAR(64) NULL DEFAULT NULL, `departname` VARCHAR(64) NULL DEFA... 阅读全文
posted @ 2016-01-12 16:28 nilz 阅读(189) 评论(0) 推荐(0) 编辑
摘要: package mainimport ( "crypto/md5" "fmt" "html/template" "io" "log" "net/http" "os" "strconv" "strings" "time")func sayHe... 阅读全文
posted @ 2016-01-12 14:17 nilz 阅读(273) 评论(0) 推荐(0) 编辑
摘要: application/x-www-form-urlencoded 表示在发送前编码所有字符(默认)multipart/form-data 不对字符编码。在使用包含文件上传控件的表单时,必须使用该值。text/plain 空格转换为 "+" 加号,但不对特殊字符编码。 阅读全文
posted @ 2016-01-12 13:19 nilz 阅读(137) 评论(0) 推荐(0) 编辑
摘要: package mainimport ( "crypto/md5" "fmt" "html/template" "io" "log" "net/http" "strconv" "strings" "time")func sayHelloName(... 阅读全文
posted @ 2016-01-12 11:17 nilz 阅读(164) 评论(0) 推荐(0) 编辑
摘要: package mainimport ( "fmt" "log" "net/http" "strings")func sayHelloName(w http.ResponseWriter, r *http.Request) { r.ParseForm() /... 阅读全文
posted @ 2016-01-11 14:28 nilz 阅读(191) 评论(0) 推荐(0) 编辑
摘要: //get请求 public static TResult Get(string host, string url) { var httpClient = new HttpClient { B... 阅读全文
posted @ 2016-01-08 13:45 nilz 阅读(1528) 评论(0) 推荐(0) 编辑
我的小站