Home > php教程 > php手册 > 浅析php插件 Simple HTML DOM 用DOM方式处理HTML

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

WBOY
Release: 2016-06-06 20:28:50
Original
1176 people have browsed it

本篇文章是对php插件Simple HTML DOM 用DOM方式处理HTML进行了详细的分析介绍,需要的朋友参考下

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最常用的
,香港虚拟主机,网站空间,香港服务器
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template