PHP的HTML解析工具:HtmlParserModel

jopen 11年前

php html解析工具,类似与PHP Simple HTML DOM Parser。 由于基于php模块tidy,所以在解析html时的效率比 PHP Simple HTML DOM Parser 快2倍多。 并提供广度优先查询find()和深度优先查询find2() 两种查询方式,可根据自己的情况选择使用。 因为代码实现的问题,在查询全部时深度优先比广度优先快一点。

示例代码:

<?php  $html = '<html>    <head>      <title>test</title>    </head>    <body>      <p class="test_class test_class1">p1</p>      <p class="test_class test_class2">p2</p>      <p class="test_class test_class3">p3</p>      <div id="test1">测试1</div>    </body>  </html>';  $html_dom = new HtmlParserModel();  $html_dom->parseStr($html);  $p_array = $html_dom->find('p.test_class');  $p1 = $html_dom->find('p.test_class1',0);  $div = $html_dom->find('div#test1',0);  foreach ($p_array as $p){      echo $p->getPlainText();  }  echo $div->getPlainText();  echo $p1->getPlainText();  echo $pi->class;  ?>

项目主页:http://www.open-open.com/lib/view/home/1371348883640