1 var decode = function(m) { 2 try { 3 m =
decodeURIComponent(m); 4 } catch(e) {} 5 var s = m.split("%"); 6 if (s.length
> 1)...
分类:
移动开发 时间:
2014-04-30 20:11:33
阅读次数:
590
exec和source都属于bash内部命令(builtins
commands),在bash下输入man exec或man source可以查看所有的内部命令信息。bash
shell的命令分为两类:外部命令和内部命令。外部命令是通过系统调用或独立的程序实现的,如sed、awk等等。内部命令是由特...
分类:
系统相关 时间:
2014-04-30 00:23:34
阅读次数:
671
打开 ../ include/ common.func.php添加代码
//将缩放图转变为文章第一张图片 function firstimg($str_pic) {
$str_sub=substr($str_pic,0,-7).".jpg";//删除缩略图字符串最后七位...
分类:
其他好文 时间:
2014-04-29 18:47:01
阅读次数:
548
简单记录:模糊查询的select语句的拼写 public List
GetWhereStudent(string name, string sub, string isG) { List lt = new List();
str...
分类:
Web程序 时间:
2014-04-29 17:17:34
阅读次数:
864