srknzcn/simplehtmldom

There is no license information available for the latest version (dev-master) of this package.

PHP Simple HTML DOM Parser clone of http://simplehtmldom.sourceforge.net

Installs: 131

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/srknzcn/simplehtmldom

dev-master 2019-06-17 23:14 UTC

This package is not auto-updated.

Last update: 2025-09-28 07:07:08 UTC


README

PHP Simple HTML DOM Parser clone of http://simplehtmldom.sourceforge.net

$parser = new \SimpleHtmlDom\Parser();
// get html dom from file
$html = $parser->fileGetHtml("https://www.google.com");

// get html dom from string
$html = $parser->strGetHtml("https://www.google.com");

$html->find("a");
...