php 小偷程序实例

1.初识正则表达式

2.认识函数ereg(),eregi()

3.file_get_contents读取整个文件函数

但是读取部分文件时就不能用这种方法 用fread

file_get_contents('doc.txt',r);==>$rf=fopen('doc.txt',r);fread($rf,fielsize('doc.txt'))

4.写一个天气预报小偷程序

例1:

$url="http://weather.tq121.com.cn/detail.php?city=上海";//目标站

$fp=@fopen($url,"r") or die ("超时");

$fcontents=file_get_contents($url);

echo "$fcontents";

例2:  对页面进行指定部分的获取

$url="http://weather.tq121.com.cn/detail.php?city=上海";//目标站

$fp=@fopen($url,"r") or die ("超时");

$fcontents=file_get_contents($url);

eregi("xxxx.gif\"width=\"480\",$fcontents,$rg);//注意双引号应该用反斜杠转义

print_r($rg);

例3:

但获取的照片为相对地址时 应该将相对地址改为绝对地址

$rg[1]=str_replace("src=\"../images/","src=http://weather.tq121.com.cn/images/",$rg[1])

echo $rg[1];

你可能感兴趣的:(php 小偷程序实例)