Home > Backend Development > PHP Tutorial > Regular expression example: Get all superlinks on a certain web page_PHP tutorial

Regular expression example: Get all superlinks on a certain web page_PHP tutorial

WBOY
Release: 2016-07-13 17:21:24
Original
895 people have browsed it


正则表达式

返回列表


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...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template