首页 >后端开发 >php教程 >正则表达式例子:获得某个网页上的所有超裢接_PHP教程

正则表达式例子:获得某个网页上的所有超裢接_PHP教程

WBOY
WBOY原创
2016-07-13 17:21:24886浏览


正则表达式

返回列表


URL:


if(isset($url)){
echo "$url 有下列裢接:
";
$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]
";
$line = $regs[2];
}
}
}
?>




www.bkjia.comtruehttp://www.bkjia.com/PHPjc/532485.htmlTechArticlehtml headtitle正则表达式/title/head body a href="./"返回列表/abr form action="?echo $PHP_SELF;?" method="post" URL:input type="text" name="url" value="?echo $url?"input...
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn