PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 基础文章 >> 

正则获得某个网页上的所有超裢接

正则获得某个网页上的所有超裢接

来源:互联网  作者:未知  发布时间:2008-01-21
HTML headtitle正则表达式/title/head body a href=ht
<HTML>
<head><title>正则表达式</title></head>
<body>
<a href=http://www.blue1000.com/article/"./">返回列表</a><br>
<form action="<?echo $PHP_SELF;?>" method="post">
URL:<input type="text" name="url" value="<?echo $url?>"><input type="submit" value="获取所有裢接">
</form>
<?
if(isset($url)){
echo "$url 有下列裢接:<br>";
$fcontents = file($url);
while(list(,$line)=each($fcontents)){
while(eregi('(href[[:space:]]*=[[:space:]]*"?[[:alnum:]:@/._-]+"?)(.*)',$line,$regs)){
$regs[1] = eregi_replace('(href[[:space:]]*=[[:space:]]*"?)([[:alnum:]:@/._-]+)("?)',"\\2",$regs[1]);
echo "    $regs[1]<br>";
$line = $regs[2];
}
}
}
?>
</body>
</HTML>
Tags: 网页   url   正则  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号