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

浅析php插件 Simple HTML DOM 用DOM方式处理HTML_PHP教程

程序员文章站 2024-01-18 22:06:04
...
simple_html_dom插件
用dom处理html文件的利器
使用:
加载simple_html_dom.php文件
复制代码 代码如下:

require_once 'simple_html_dom.php'

new simple_html_dom对象
复制代码 代码如下:

$dom = new simple_html_dom()

加载html
复制代码 代码如下:

$dom->load($html);

find()方法
复制代码 代码如下:

$dom->find('div.lookLeftname', 0)->plaintext

class=‘lookLeftname'的div中的纯文本
复制代码 代码如下:

$dom->find('div.lookLeftname', 0)->innertext

class='lookLeftname'的div中的内部文本
plaintext 与innertext最常用的

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/327965.htmlTechArticlesimple_html_dom插件 用dom处理html文件的利器 使用: 加载simple_html_dom.php文件 复制代码 代码如下: require_once 'simple_html_dom.php' new simple_html_dom对象...