一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

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

时间:2010-07-10 编辑:简简单单 来源:一聚教程网

 

 代码如下 复制代码

$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.111com.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('/(?<=href=")[wd.:/]*/',$str,$fstr);

热门栏目