当前位置:   article > 正文

php爬取网页数据(simple_html_dom)

simple_html_dom

下载地址: GitHub - samacs/simple_html_dom: Just a Simple HTML DOM library fork. (http://simplehtmldom.sourceforge.net/)

解析器不仅仅只是帮助我们验证html文档;更能解析不符合W3C标准的html文档。它使用了类似jQuery的元素选择器,通过元素的id,class,tag等等来查找定位;同时还提供添加、删除、修改文档树的功能。当然,这样一款强大的html Dom解析器也不是尽善尽美;在使用的过程中需要十分小心内存消耗的情况。不过,不要担心;本文中,笔者在最后会为各位介绍如何避免消耗过多的内存。
开始使用
上传类文件以后,有三种方式调用这个类:
从url中加载html文档
从字符串中加载html文档
从文件中加载

  1. <?php
  2. // 新建一个Dom实例
  3. $html = new simple_html_dom();
  4. // 从url中加载
  5. $html->load_file('http://www.jb51.net');
  6. // 从字符串中加载
  7. $html->load('<html><body>从字符串中加载html文档演示</body></html>');
  8. //从文件中加载
  9. $html->load_file('path/file/test.html');
  10. ?>

如果从字符串加载html文档,需要先从网络上下载。建议使用CURL来抓取html文档并加载DOM中。

PHP Simple HTML DOM Parser提供了3种方式来创建DOM对象 :

  1. // Create a DOM object from a string
  2. $html = str_get_html('<html><body>Hello!</body></html>');
  3. // Create a DOM object from a URL
  4. $html = file_get_html('http://www.google.com/');
  5. // Create a DOM object from a HTML file
  6. $html = file_get_html('test.htm');

查找html元素
可以使用find函数来查找html文档中的元素。返回的结果是一个包含了对象的数组。我们使用HTML DOM解析类中的函数来访问这些对象,下面给出几个示例:

  1. <?php
  2. //查找html文档中的超链接元素
  3. $a = $html->find('a');
  4. //查找文档中第(N)个超链接,如果没有找到则返回空数组.
  5. $a = $html->find('a', 0);
  6. // 查找id为main的div元素
  7. $main = $html->find('div[id=main]',0);
  8. // 查找所有包含有id属性的div元素
  9. $divs = $html->find('div[id]');
  10. // 查找所有包含有id属性的元素
  11. $divs = $html->find('[id]');
  12. ?>

还可以使用类似jQuery的选择器来查找定位元素:

  1. <?php
  2. // 查找id='#container'的元素
  3. $ret = $html->find('#container');
  4. // 找到所有class=foo的元素
  5. $ret = $html->find('.foo');
  6. // 查找多个html标签
  7. $ret = $html->find('a, img');
  8. // 还可以这样用
  9. $ret = $html->find('a[title], img[title]');
  10. ?>

解析器支持对子元素的查找

  1. <?php
  2. // 查找 ul列表中所有的li项
  3. $ret = $html->find('ul li');
  4. //查找 ul 列表指定class=selected的li项
  5. $ret = $html->find('ul li.selected');
  6. ?>

如果你觉得这样用起来麻烦,使用内置函数可以轻松定位元素的父元素、子元素与相邻元素

  1. <?php
  2. // 返回父元素
  3. $e->parent;
  4. // 返回子元素数组
  5. $e->children;
  6. // 通过索引号返回指定子元素
  7. $e->children(0);
  8. // 返回第一个资源速
  9. $e->first_child ();
  10. // 返回最后一个子元素
  11. $e->last _child ();
  12. // 返回上一个相邻元素
  13. $e->prev_sibling ();
  14. //返回下一个相邻元素
  15. $e->next_sibling ();
  16. ?>

元素属性操作
使用简单的正则表达式来操作属性选择器。
[attribute] – 选择包含某属性的html元素
[attribute=value] – 选择所有指定值属性的html元素
[attribute!=value]- 选择所有非指定值属性的html元素
[attribute^=value] -选择所有指定值开头属性的html元素
[attribute$=value] 选择所有指定值结尾属性的html元素
[attribute*=value] -选择所有包含指定值属性的html元素
在解析器中调用元素属性
在DOM中元素属性也是对象:

  1. <?php
  2. // 本例中将$a的锚链接值赋给$link变量
  3. $link = $a->href;
  4. //或者
  5. $link = $html->find('a',0)->href;
  6. ?>

每个对象都有4个基本对象属性:
tag – 返回html标签名
innertext – 返回innerHTML
outertext – 返回outerHTML
plaintext – 返回html标签中的文本
在解析器中编辑元素
编辑元素属性的用法和调用它们是类似的:

  1. <?php
  2. //给$a的锚链接赋新值
  3. $a->href = 'http://www.jb51.net';
  4. // 删除锚链接
  5. $a->href = null;
  6. // 检测是否存在锚链接
  7. if(isset($a->href)) {
  8. //代码
  9. }
  10. ?>

解析器中没有专门的方法来添加、删除元素,不过可以变通一下使用:

  1. <?php
  2. // 封装元素
  3. $e->outertext = '<div class="wrap">' . $e->outertext . '<div>';
  4. // 删除元素
  5. $e->outertext = '';
  6. // 添加元素
  7. $e->outertext = $e->outertext . '<div>foo<div>';
  8. // 插入元素
  9. $e->outertext = '<div>foo<div>' . $e->outertext;
  10. ?>

保存修改后的html DOM文档也非常简单:

  1. <?php
  2. $doc = $html;
  3. // 输出
  4. echo $doc;
  5. ?>

如何避免解析器消耗过多内存
在本文的开篇中,笔者就提到了Simple HTML DOM解析器消耗内存过多的问题。如果php脚本占用内存太多,会导致网站停止响应等一系列严重的问题。解决的方法也很简单,在解析器加载html文档并使用完成后,记得清理掉这个对象就可以了。当然,也不要把问题看得太严重了。如果只是加载了2、3个文档,清理或不清理是没有多大区别的。当你加载了5个10个甚至更多的文档的时候,用完一个就清理一下内存

  1. <?php
  2. $html->clear();
  3. ?>

一个实例:

  1. <?PHP
  2. include "simple_html_dom.php" ;//加载simple_html_dom.php文件
  3. $html = file_get_html('http://www.google.com/');//获取html
  4. $dom = new simple_html_dom(); //new simple_html_dom对象
  5. $dom->load($html) //加载html
  6. // Find all images
  7. foreach($dom->find('img') as $element) {
  8. //获取img标签数组
  9. echo $element->src . '<br>'; //获取每个img标签中的src
  10. }
  11. // Find all links
  12. foreach($dom->find('a') as $element){ //获取a标签的数组
  13. echo $element->href . '<br>';//获取每个a标签中的href
  14. }
  15. $html = file_get_html('http://slashdot.org/'); //获取html
  16. $dom = new simple_html_dom(); //new simple_html_dom对象
  17. $dom->load($html); //加载html
  18. // Find all article blocks
  19. foreach($dom->find('div.article') as $article) {
  20. $item['title'] = $article->find('div.title', 0)->plaintext; //plaintext 获取纯文本
  21. $item['intro'] = $article->find('div.intro', 0)->plaintext;
  22. $item['details'] = $article->find('div.details', 0)->plaintext;
  23. $articles[] = $item;
  24. }
  25. print_r($articles);
  26. // Create DOM from string
  27. $html = str_get_html('<div id="hello">Hello</div><div id="world">World</div>');
  28. $dom = new simple_html_dom(); //new simple_html_dom对象</p><p>
  29. $dom->load($html); //加载html
  30. $dom->find('div', 1)->class = 'bar'; //class = 赋值 给第二个div的class赋值</p><p>
  31. $dom->find('div[id=hello]', 0)->innertext = 'foo'; //innertext内部文本</p><p>
  32. echo $dom;
  33. //Output:
  34. <div id="hello">foo</div><div id="world" class="bar">World</div>
  35. <p> DOM methods & properties
  36. Name Description
  37. void __construct ( [string $filename] ) 构造函数,将文件名参数将自动加载内容,无论是文本或文件/ url。
  38. string plaintext 纯文本
  39. void clear () 清理内存
  40. void load ( string $content ) 加载内容
  41. string save ( [string $filename] ) Dumps the internal DOM tree back into a string. If the $filename is set, result string will save to file.
  42. void load_file ( string $filename ) Load contents from a from a file or a URL.
  43. void set_callback ( string $function_name ) 设置一个回调函数。
  44. mixed find ( string $selector [, int $index] ) 找到元素的CSS选择器。返回第n个元素对象如果索引设置,否则返回一个数组对象。 </p>
  45. 4.find 方法详细介绍</p><p>
  46. find ( string $selector [, int $index] )
  47. // Find all anchors, returns a array of element objects a标签数组
  48. $ret = $html->find('a');</p><p> // Find (N)th anchor, returns element object or null if not found (zero based)第一个a标签
  49. $ret = $html->find('a', 0);</p><p> // Find lastest anchor, returns element object or null if not found (zero based)最后一个a标签
  50. $ret = $html->find('a', -1); </p><p> // Find all <div> with the id attribute
  51. $ret = $html->find('div[id]');</p><p> // Find all <div> which attribute id=foo
  52. $ret = $html->find('div[id=foo]'); </p><p>
  53. // Find all element which id=foo
  54. $ret = $html->find('#foo');</p><p> // Find all element which class=foo
  55. $ret = $html->find('.foo');</p><p> // Find all element has attribute id
  56. $ret = $html->find('*[id]'); </p><p> // Find all anchors and images a标签与img标签数组
  57. $ret = $html->find('a, img'); </p><p> // Find all anchors and images with the "title" attribute
  58. $ret = $html->find('a[title], img[title]');</p><p>
  59. // Find all <li> in <ul>
  60. $es = $html->find('ul li'); ul标签下的li标签数组</p><p> // Find Nested <div> tags
  61. $es = $html->find('div div div'); div标签下div标签下div标签数组</p><p> // Find all <td> in <table> which class=hello
  62. $es = $html->find('table.hello td'); table标签下td标签数组</p><p> // Find all td tags with attribite align=center in table tags
  63. $es = $html->find(''table td[align=center]'); </p><p>
  64. 5.Element 的方法
  65. $e = $html->find("div", 0); //$e 所拥有的方法如下表所示
  66. Attribute Name Usage
  67. $e->tag 标签
  68. $e->outertext 外文本
  69. $e->innertext 内文本
  70. $e->plaintext 纯文本 </p><p> </p><p> // Example
  71. $html = str_get_html("<div>foo <b>bar</b></div>");
  72. echo $e->tag; // Returns: " div"
  73. echo $e->outertext; // Returns: " <div>foo <b>bar</b></div>"
  74. echo $e->innertext; // Returns: " foo <b>bar</b>"
  75. echo $e->plaintext; // Returns: " foo bar"</p><p>
  76. 6.DOM traversing 方法
  77. Method Description
  78. mixed$e->children ( [int $index] ) 子元素
  79. element$e->parent () 父元素
  80. element$e->first_child () 第一个子元素
  81. element$e->last_child () 最后一个子元素
  82. element$e->next_sibling () 后一个兄弟元素
  83. element$e->prev_sibling () 前一个兄弟元素 </p><p>
  84. // Example
  85. echo $html->find("#div1", 0)->children(1)->children(1)->children(2)->id;
  86. // or
  87. echo $html->getElementById("div1")->childNodes(1)->childNodes(1)->childNodes(2)->getAttribute('id');

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/396754
推荐阅读
相关标签
  

闽ICP备14008679号