Home >php教程 >php手册 >//获取网页中的所有链接

//获取网页中的所有链接

WBOY
WBOYOriginal
2016-06-06 19:38:501197browse

//获取网页中的所有链接 无 //获取网页中的所有链接 function get_all_url($code){ preg_match_all('/\s+href=["|\']?([^"\' ]+)["|\']?/i',$code,$arr); return array('url'=$arr[1]); }

//获取网页中的所有链接
//获取网页中的所有链接
    function get_all_url($code){  
        preg_match_all('/\s+href=["|\']?([^>"\' ]+)["|\']?/i',$code,$arr);  
        return array('url'=>$arr[1]);  
    }
Statement:
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