Home > php教程 > php手册 > php获取网页上所有链接的方法

php获取网页上所有链接的方法

WBOY
Release: 2016-06-13 09:07:46
Original
867 people have browsed it

php获取网页上所有链接的方法

本文实例讲述了php取得网页上所有链接的方法。分享给大家供大家参考。具体实现方法如下:

代码如下:

function get_all_url($code){
preg_match_all('/"' ]+)["|']?s*[^>]*>([^>]+)/i',$code,$arr);
return array('name'=>$arr[2],'url'=>$arr[1]);
}
?>

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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template