fulltimebrothers / simple-html-dom
HTML DOM 解析器 for Laravel
dev-master
2023-04-14 11:36 UTC
Requires
- php: >=5.3.2
- ext-mbstring: *
This package is not auto-updated.
Last update: 2024-09-28 18:10:52 UTC
README
版本 1.9
对 Composer 和 PSR-0 的适配
PHP5+ 编写的 HTML DOM 解析器,让您以非常简单的方式操作 HTML!需要 PHP 5+。支持无效的 HTML。像 jQuery 一样使用选择器在 HTML 页面上查找标签。一行内从 HTML 中提取内容。
http://simplehtmldom.sourceforge.net/
安装
composer.phar
"require": { "fulltimebrothers/simple-html-dom": "master" }
用法
use FullTimeBrothers\HtmlDomParser; ... $dom = HtmlDomParser::str_get_html( $str ); or $dom = HtmlDomParser::file_get_html( $file_name ); $elems = $dom->find($elem_name); ...