- 浏览: 389551 次
- 性别:
- 来自: 北京
最新评论
-
lr544463316:
我的怎么不行呀.....
Mysql Access denied for user ''@'localhost' to database 的一种解决方法 -
babaoqi:
使用时需要注意group_concat函数返回值的最大长度=g ...
mysql中的group_concat函数 -
代码能力弱成渣:
可以帮我看下我的代码么?我自己写的sam,也有ac过题的,但是 ...
求两个字符串的最长公共连续子序列(SAM实现) -
atgoingguoat:
有1000个?不过还是收藏下。
jquery常用的插件1000收集(转载)
文章列表
转自: http://www.cnblogs.com/qiantuwuliang/archive/2009/07/19/1526687.html
escape()、encodeURI()、encodeURIComponent()区别详解
JavaScript中有三个可以对字符串编码的函数,分别是: escape,encodeURI,encodeURIComponent,相应3个解码函数:unescape,decodeURI,decodeURIComponent 。
下面简单介绍一下它们的区别
1 escape()函数
定义和用法 escape() 函数可 ...
转自: http://hi.baidu.com/49201650/item/1d60c2948cf071db1b49dfca
JS内置函数
JS内置函数不从属于任何对象,在JS语句的任何地方都可以直接使用这些函数。JS中常用的内置函数如下: 1、eval(str)接收一个字符串形式的表达式 ...
js中的var定义局部变量
- 博客分类:
- 前端技术
摘自《O'Reilly - Learning JavaScript》
When you use var with a variable, you’re defining the variable with local scope, which means you can access them only within the function in which you’ve defined them. If I didn’t use var, the variable msg would be global and would have scope inside and outsi ...
打印调用栈的函数print_stack_trace
- 博客分类:
- php
打印调用栈的函数print_stack_trace
/*
* 打印调用栈的信息
* @param string $msg
* 需要打印出来的消息
* @param function $log_handler
* 处理日志的函数,如果为null,则调用print函数打印日志
* @param string $endline
* 行结束符,如果显示在网页上,可以设置为'<br/>'
* @param bool $exit
* 打完日志后是否退出程序
*/
function print_stack_trace ...
javaScript document对象详解
- 博客分类:
- 前端技术
转自: http://webcenter.hit.edu.cn/articles/2009/06-10/06144703.htm
Document对象内容集合
document 文挡对象 - JavaScript脚本语言描述———————————————————————注:页面上元素name属性和JavaScript引用的名称必须一致包括大小写否则会提示你一个错误信息 “引用的元素为空或者不是对象\\\\\”———————————————————————
对象属性document.title //设置文档标题等价于HTML的title标签document.bgColor / ...
设置了O_APPEND,lseek的操作将无效
- 博客分类:
- linux
下面 的代码说明,设置了O_APPEND,语句“lseek(fd, 0, SEEK_SET)”并没有起到应有的作用
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
int main(int argc, ch ...
#!/bin/bash
# 搜索头文件的路径
if [ $# -lt 1 ]; then
echo "参数太少了!
第一个参数是头文件的名字"
exit 1
fi
dir="/usr/include:/usr/local/include:/usr/lib/gcc-lib"
header=$1
echo $dir | sed 's/:/\n/g' | while read line
do
find $line | grep -e "/"$header"$& ...
列出输入目录的所有文件
- 博客分类:
- linux编程
#include <dirent.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[]){
DIR* dir;
if(argc < 2){
fprintf(stderr, "参数太少了!\n");
exit(1);
}
if((dir = opendir(argv[1])) == NULL){ ...
shell实现查找某目录下所有的文本文件
- 博客分类:
- linux
第一个参数是要查找的目录
#!/bin/bash
dir=$1
find $dir -type f | xargs file | awk '{
if($1 !~ /\.svn/){
len = length($1);
ans = substr($0, len+1);
if(ans ~/text/){
print substr($1, 0, length($1)-1);
}
}
}'
MakeFile预定义变量
- 博客分类:
- linux
转自:http://hi.baidu.com/ueszx/item/33d4b1cc99036b27a0b50a56
Makefile中常见预定义变量
命 令 格 式
含 义
AR
库文件维护程序的名称,默认值为ar
AS
汇编程序的名称,默认值为as
CC
C编译器的名称,默认值为cc
CPP
C预编译器的名称,默认值为$(CC) –E
CXX
C++编译器的名称,默认值为g++
FC
时间戳转换为“年-月-日 时:分:秒”的格式
- 博客分类:
- php
<?php
if($argc < 2){
print "请输入命令 'php ".$argv[0]." time', 期中time
是你想转换的时间。";
exit(0);
}
$time = $argv[1];
echo date("Y-m-d H:i:s", $time)."\n";
?>
命令为:
php-cgi --fpm --fpm-config /usr/local/php/etc/php-fpm.conf
转自: http://wenku.baidu.com/view/0102a23467ec102de2bd8965.html
标准库 - 输入输出处理(input and output facilities)
责任编辑:cynthia作者:来自ITPUB论坛
2008-02-18 文本Tag: Lua
【IT168 技术文档】I/O库提供两种不同的方式进行文件处理
1、io表调用方式:使用io表,io.open将返回指定文件的描述,并且所有的操作将围绕这个文件描述
io表同样提供三种预定义的文件描述io.stdin,io.stdout,io.stderr ...
lua的迭代器和for范型示例
- 博客分类:
- lua
function iter(t)
local i = 0
local n = table.getn(t)
return function ()
i = i + 1
if(i <=n ) then
return t[i]
else
return nil
end
end
end
ar = {1, 2, 3}
for e in iter(ar) do
print(e)
end
function iter(t)
local i = 0
local n = table.getn(t)
return function ()
i = i + 1
if(i <=n ) then
return t[i]
else
return nil
end
end
end
ar = {1, 2, 3}
ariter = iter(ar)
while true do
local e = ariter()
...