zvook/php5-simple-html
Composer 安装命令:
composer require zvook/php5-simple-html
包简介
Wrapper for simple_html_dom
README 文档
README
Usable wrapper for simple_html_dom
Makes you happy to use simple_html_dom with your IDE
Usage
Add to your composer.json
"require": {
"zvook/php5-simple-html": "*"
}
Example
use SimpleHtml\Dom; $dom = Dom::str_get_html('<html></html>'); $dom = Dom::file_get_html('http://www.google.com/'); $div = $dom->getElementById('id1'); foreach ($div->getElementByTagName('table.table-class')->find('tr') as $row) { $firstCell = $row->find('td', 0); $thirdCell = $row->find('td', 2); $content = $thirdCell->plaintext; }
统计信息
- 总下载量: 69
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-02-02