Looking to hire Laravel developers? Try LaraJobs

laravel-simple-html-dom maintained by drnxloc

Description
Composer adaptation of: A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way! Require PHP 5+. Supports invalid HTML. Find tags on an HTML page with selectors just like jQuery. Extract contents from HTML in a single line.
Authors
Last update
2022/04/14 19:33 (dev-master)
License
Downloads
368 818
Tags

Comments
comments powered by Disqus

laravel-simple-html-dom

Version 1.9.1(291) - Update 18/4/2021

Adaptation for Composer and PSR-0 of:

A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way! Require PHP 5+. Supports invalid HTML. Find tags on an HTML page with selectors just like jQuery. Extract contents from HTML in a single line.

http://simplehtmldom.sourceforge.net/

Install

composer require drnxloc/laravel-simple-html-dom

Usage

use Drnxloc\LaravelHtmlDom\HtmlDomParser;

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

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