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

查找页面中所有链接的PHP代码

程序员文章站 2022-04-30 22:24:41
...

  1. function get_links($link) {
  2. $html = file_get_contents($link);
  3. $html = str_replace("\n", "", $html);
  4. $html = preg_replace('/ $html = preg_replace('//', "\n", $html);
  5. preg_match_all('/.*?/', $html, $matches);
  6. return($matches);
  7. }
复制代码

在这个例子中,我们想用file_get_contents来取得一个网页的内容。然后用str_replace("\n", "", $html)把所有的换行去掉。再用preg_replace('//', "\n", $html)来把所有的.....模式另起一行。最后就用preg_match_all('/.*?/', $html, $matches)匹配链接模式。/.*?/就是匹配.....这种模式的正则表达式。那我们为什么要把.....链接另起一行呢??因为在/.*?/模式中,.*是不能匹配换行的,所以就如和不在同一行就不能匹配了!!所以我们要这样做!
PHP