欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php匹配指定标签的内容

程序员文章站 2022-05-14 13:48:25
...
php匹配指定div内容,在用php编写采集程序的时候,抓取到的网页数据有时候我们只需要一小段标签内容,怎么才能冲html代码中提取出来呢,这里提供一个函数示例,实现php匹配任意html标签内的所有内容:
/*** 匹配任意id的html标签内容* */function getWebTag($tag_id,$tag='div',$data=false){             $charset_pos = stripos($data,'charset');        if($charset_pos) {            if(stripos($data,'utf-8',$charset_pos)) {                $data = iconv('utf-8','utf-8',$data);            }else if(stripos($data,'gb2312',$charset_pos)) {                $data = iconv('gb2312','utf-8',$data);            }else if(stripos($data,'gbk',$charset_pos)) {                $data = iconv('gbk','utf-8',$data);            }        }               preg_match_all('/$pre_div){            $divs[(int)$pre_div[1]] = 'p';            $divs[(int)$suf_matches[0][$index][1]] = 's';           }               //对div进行排序        $sort = array_keys($divs);        asort($sort);               $count = count($pre_matches[0]);        foreach($pre_matches[0] as $index=>$pre_div){            //
'; break; } } return $hitDivString;}

调用示例

$html=file_get_contents('http://www.baidu.com');

$divContent=getWebTag('id="content"','div',$html);

php匹配指定标签的内容

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频