上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 57 下一页
摘要: 解决办法 阅读全文
posted @ 2018-03-19 11:59 whmmm 阅读(1489) 评论(0) 推荐(0)
摘要: //php闭包实现函数的自调用,也就是实现递归 function closure($n,$counter,$max){ //匿名函数,这里函数的参数加&符号是,引址调用参数自己 $fn = function (&$n,&$counter,&$max=1) use(&$fn){//use参数传递的是函数闭包函数自身 $n++; if($n '; ... 阅读全文
posted @ 2018-03-11 19:05 whmmm 阅读(3318) 评论(0) 推荐(0)
摘要: 两个方面。。 一: httpd.conf 是否有 <directory '/www'></directory> 是否有 Deny from all 或者 Require local 。。。将其改为 Require all granted httpd-vhosts.conf 是否有 Deny from 阅读全文
posted @ 2018-03-10 16:16 whmmm 阅读(79) 评论(0) 推荐(0)
摘要: FIND_IN_SET(str,strlist) ,strlist 是 一个 由 逗号 分割的字符串,要注意 strlist 不能有逗号。。 它 等于 where str in (1,2,3***) instr(str,char) 如果第一个 str 字符串 包含 char 那么 返回真! 阅读全文
posted @ 2018-03-09 17:29 whmmm 阅读(99) 评论(0) 推荐(0)
摘要: 1. 如果 一直 update indices......... windows : 删除 c 盘 用户目录下 .IntelliJIdea2017.3/system/caches 目录 ........方法来源:点击查看..... 阅读全文
posted @ 2018-02-21 22:57 whmmm 阅读(592) 评论(0) 推荐(0)
摘要: —– BEGIN LICENSE —– TwitterInc 200 User License EA7E-890007 1D77F72E 390CDD93 4DCBA022 FAF60790 61AA12C0 A37081C5 D0316412 4584D136 94D7F7D4 95BC8C1C  阅读全文
posted @ 2018-02-10 22:00 whmmm 阅读(171) 评论(0) 推荐(0)
摘要: spring test ,servlet 版本需要在 3.1.0以上...使用 servlet 2.5 会报错.... 如果 spring Mvc,spring 在一个 配置文件里面..加上 @WebAppConfiguration 注解 阅读全文
posted @ 2018-01-30 13:08 whmmm 阅读(117) 评论(0) 推荐(0)
摘要: //获取调用该方法的方法名.... String method = Thread.currentThread().getStackTrace()[2].getMethodName(); //获取正在执行方法的方法名.... String method = Thread.currentThread().getStackTrace()[1].getMethodNam... 阅读全文
posted @ 2018-01-24 21:17 whmmm 阅读(379) 评论(0) 推荐(0)
摘要: *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo __pycache__ *.rej *~ #*# .#* .*.swp .DS_Store [Tt]humbs.db .vscode **/.vscode .idea **/.idea *.iml **/*.iml .settings .classpath .project tar... 阅读全文
posted @ 2018-01-20 20:59 whmmm 阅读(161) 评论(0) 推荐(0)
摘要: http-server 是一个简单的零配置命令行HTTP服务器, 基于 nodeJs. 如果你不想重复的写 nodeJs 的 web-server.js, 则可以使用这个. 安装 (全局安装加 -g) : Windows 下使用: 在站点目录下开启命令行输入 访问: http://localhost 阅读全文
posted @ 2018-01-20 20:22 whmmm 阅读(167) 评论(0) 推荐(0)
上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 57 下一页
//增加一段JS脚本,为目录生成使用