caophihung94/php-simple-html-dom-parser

支持命名空间和PHP 7.4兼容的PHP Simple HTML DOM Parser

v1.7.5 2020-08-18 07:09 UTC

This package is auto-updated.

Last update: 2024-09-05 17:06:35 UTC


README

版本 1.9.1 - PHP 8.x 兼容的PHP Simple HTML DOM Parser 更新日志: https://sourceforge.net/projects/simplehtmldom/files/simplehtmldom/1.9.1/

安装

composer require caophihung94/php-simple-html-dom-parser

使用方法

use HungCP\PhpSimpleHtmlDom\HtmlDomParser;

...
$dom = HtmlDomParser::str_get_html( $str );
or
$dom = HtmlDomParser::file_get_html( $file_name );

$elems = $dom->find($elem_name);
...