码迷,mamicode.com
首页 > Web开发 > 详细

php解析html

时间:2015-04-24 14:17:12      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

用simple_html_dom

下载地址:https://github.com/samacs/simple_html_dom

解析超链接描述

1 $html = file_get_html(‘http://www.baidu.com/‘);
2 
3 // find all link
4 foreach($html->find(‘a‘) as $e) 
5 echo $e->innertext . ‘<br>‘;

如果是解析超链接url:

1 $html = file_get_html(‘http://www.baidu.com/‘);
2 
3 // find all link
4 foreach($html->find(‘a‘) as $e) 
5 echo $e->href . ‘<br>‘;

 

php解析html

标签:

原文地址:http://www.cnblogs.com/souroot/p/4453192.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!