几种获取html字符串中所有a链接地址代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-17 15:54:26 浏览: 评论:0
- $ss = "<a href='1.gif'>d</a>adfxx<a href="dir.html">dir</a>";
- print_r(gethref($ss));
- function gethref($temp){
- preg_match_all('/<a.*?(?: |\t|\r|\n)?href=['"]?(.+?)['"]?(?:(?: |\t|\r|\n)+.*?)?>(.+?)</a.*?>/sim',$temp,$a);
- return $a[1];
- }
- //下面所有a连接
- $htm = preg_replace( "@<a(.*?)</a>@is","$1",$ss);
- print_r($htm);
- //比较全的提取url连接地址
- $url="http://www.phpfensi.com";
- $html=file_get_contents($url,"r");
- preg_match_all ("/(<a)(.*)(href=)([^>]*)(>)([^<]*)(<)([^>]*)(>)/", $html, $matches);
- for ($i=0;$i<count($matches[0]);$i++)
- {
- echo "|||".$matches[2][$i]."||".$matches[3][$i].$matches[4][$i]."||".$matches[6][$i]."||".$matches[8][$i]."<br>";
- }
- //提取文章字符串中所有链接地址
- preg_match_all('/(?<=href=")[wd.:/]*/',$str,$fstr);
Tags: 获取html字符串 a链接地址
- 上一篇:php 利用数据库信息生成静态页面实例代码
- 下一篇:php导出数据到csv文件
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)