JoeSz / php-simple-html-dom-parser-2

PHP Simple HTML DOM Parser with namespace and PHP 7.3 compatible

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

php-simple-html-dom-parser

Version 1.9.1 - PHP 7.4 compatible PHP Simple HTML DOM Parser changelog: https://sourceforge.net/projects/simplehtmldom/files/simplehtmldom/1.9.1/

Install

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

Usage

use HungCP\PhpSimpleHtmlDom\HtmlDomParser;

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

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

About

PHP Simple HTML DOM Parser with namespace and PHP 7.3 compatible

License:MIT License


Languages

Language:PHP 100.0%