欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-05-10 15:56:55
...

正则表达式

返回列表


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...