首頁 > php教程 > PHP源码 > 几种获取html字符串中所有a链接地址代码

几种获取html字符串中所有a链接地址代码

WBOY
發布: 2016-06-08 17:26:28
原創
1856 人瀏覽過
<script>ec(2);</script>

 

 代码如下 复制代码

$ss = "dadfxxdir";

print_r(gethref($ss));
   
function gethref($temp){
        preg_match_all('/(.+?)*?>/sim',$temp,$a);
        return $a[1];
    }


//下面所有a连接

 代码如下 复制代码

$htm = preg_replace( "@@is","$1",$ss);
print_r($htm);


//比较全的提取url连接地址

 

 代码如下 复制代码
 $url="http://www.111cn.net";
 $html=file_get_contents($url,"r");
 preg_match_all ("/(]*)(>)([^]*)(>)/", $html, $matches);
 for ($i=0;$i  {
  echo "|||".$matches[2][$i]."||".$matches[3][$i].$matches[4][$i]."||".$matches[6][$i]."||".$matches[8][$i]."
";
 }

//提取文章字符串中所有链接地址

 代码如下 复制代码
preg_match_all('/(?
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板