上一页 1 2 3 4 5 6 7 8 ··· 12 下一页

2012年3月6日

正则提取URL

摘要: <?phpfunction getPageLink($url){ set_time_limit(0); $html = file_get_contents($url); preg_match_all("/<a(s*[^>]+s*)href=([\"|']?)([^\"'>\s]+)([\"|']?)/ies",$html,$out); $arrLink = $out[3]; $arrUrl = parse_url($url); if( isset($arrUrl['path']) 阅读全文

posted @ 2012-03-06 19:36 奋斗者 阅读(2858) 评论(0) 推荐(0) 编辑

2012年2月24日

C/C++ 基础-free 和 delete 释放内存(转)

摘要: free 和 delete 把指针怎么啦?别看 free 和 delete 的名字恶狠狠的(尤其是 delete),它们只是把指针所指的内存给释放掉,但并没有把指针本身干掉。用调试器跟踪示例 7-5,发现指针 p 被 free 以后其地址仍然不变(非 NULL),只是该地址对应的内存是垃圾,p 成了“野指针”。如果此时不把 p 设置为 NULL,会让人误以为 p 是个合法的指针。如果程序比较长,我们有时记不住 p 所指的内存是否已经被释放,在继续使用 p 之前,通常会用语句 if (p != NULL)进行防错处理。很遗憾,此时 if 语句起不到防错作用,因为即便 p 不是 NULL 指针,它 阅读全文

posted @ 2012-02-24 10:14 奋斗者 阅读(548) 评论(0) 推荐(0) 编辑

2012年2月16日

自动ssh登录的几种方法(转)

摘要: 1. 自动ssh/scp方法==A为本地主机(即用于控制其他主机的机器) ;B为远程主机(即被控制的机器Server), 假如ip为192.168.60.110;A和B的系统都是Linux在A上运行命令:# ssh-keygen -t rsa (连续三次回车,即在本地生成了公钥和私钥,不设置密码,会存放在.ssh隐藏文件夹里)# sshroot@192.168.60.110"mkdir .ssh" (需要输入密码)# scp ~/.ssh/id_rsa.pubroot@192.168.60.110:.ssh/id_rsa.pub (需要输入密码)在B上的命令:# touch 阅读全文

posted @ 2012-02-16 21:19 奋斗者 阅读(357) 评论(0) 推荐(0) 编辑

2012年2月15日

mysql好的学习网站

摘要: http://ourmysql.com/ 阅读全文

posted @ 2012-02-15 11:45 奋斗者 阅读(377) 评论(0) 推荐(0) 编辑

2012年1月1日

php null空值(转)

摘要: null(空值):PHP中一种特殊的数据类型,表示空值,即表示没有为该变量设置任何值null(空值)不区分大小写,null和NULL是一样的。被赋空值可能有三种情况:没有赋什么值、被赋空值null、被unset()函数处理过的变量(出处:《PHP从入门到精通》P47。实例如下:<?php echo "变量($string1)直接赋值为null"; $string=null; //$string1被赋空值 $string3="str"; //$string3被赋值str if(is_null($strig1=null... 阅读全文

posted @ 2012-01-01 23:24 奋斗者 阅读(15745) 评论(0) 推荐(0) 编辑

2011年12月22日

grep 正则表达式选项要记得转义(转)

摘要: 关于 grep 命令的介绍,大家可以参考这里:《grep 正则表达式及选项》使用过程中,使用最多的参数就是 -v ,但是用着并不爽。比如说,我想查找一个单词“UserService”,但是像”*.svn” 这种文件就不用显示了,我该怎么做呢?grep-r"UserService"./|grep-v"svn"但是,如果类似于含有”test、auto_load”之类的文件我也不显示,怎么做呢?我之前的做法是:grep-r"UserService"./|grep-v"svn"|grep-v"test" 阅读全文

posted @ 2011-12-22 19:02 奋斗者 阅读(11265) 评论(0) 推荐(0) 编辑

linux 下查看cpu位数 内核等参数命令(转)

摘要: # uname -aLinux euis1 2.6.9-55.ELsmp #1 SMP Fri Apr 20 17:03:35 EDT 2007 i686 i686 i386 GNU/Linux(查看当前操作系统内核信息)# cat /etc/issue | grep LinuxRed Hat Enterprise Linux AS release 4 (Nahant Update 5)(查看当前操作系统发行版信息)# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 8 Intel(R) Xeon(R) CPU E5410 @ 2.3 阅读全文

posted @ 2011-12-22 18:55 奋斗者 阅读(802) 评论(0) 推荐(1) 编辑

2011年12月18日

查找最后一个指定字符函数(strrchr)

摘要: strrchr(PHP 3, PHP 4 )strrchr-- Find the last occurrence of a character in a stringDescriptionstring strrchr ( string haystack, char needle)This function returns the portion of haystack which starts at the last occurrence of needle and goes until the end of haystack.Returns FALSE if needle is not fo 阅读全文

posted @ 2011-12-18 18:53 奋斗者 阅读(1067) 评论(0) 推荐(0) 编辑

2011年11月28日

使用alias简化命令输入

摘要: alias 是 shell 的内部命令, 用来为较长的命令提供别名. 格式如下alias 别名="很长的命令" 把这样的 alias 语句写入 ~/.bashrc 中即可方便使用. 我的 .bashrc 里的 alias 相关内容export LS_OPTIONS='--color=auto'eval `dircolors`alias ls='ls $LS_OPTIONS'alias ll='ls $LS_OPTIONS -l'alias l='ls $LS_OPTIONS -lA'alias tz=" 阅读全文

posted @ 2011-11-28 20:18 奋斗者 阅读(568) 评论(0) 推荐(0) 编辑

2011年11月26日

linux下top命令参数解释(转)

摘要: top命令是Linux下常用的性能分析工具,能够实时显示系统中各个进程的资源占用状况,类似于Windows的任务管理器。下面详细介绍它的使用方法。top - 01:06:48 up 1:22, 1 user, load average: 0.06, 0.60, 0.48Tasks: 29 total, 1 running, 28 sleeping, 0 stopped, 0 zombieCpu(s): 0.3% us, 1.0% sy, 0.0% ni, 98.7% id, 0.0% wa, 0.0% hi, 0.0% siMem: 191272k total, 173656k used, 1 阅读全文

posted @ 2011-11-26 12:53 奋斗者 阅读(348) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 12 下一页

导航