axllent/simplehtmldom

PHP Simple HTML DOM Parser with namespace & bug fixes

Installs: 18 279

Dependents: 3

Suggesters: 0

Security: 0

Stars: 9

Watchers: 4

Forks: 2

Open Issues: 0

pkg:composer/axllent/simplehtmldom

1.6.1 2022-08-20 11:46 UTC

This package is auto-updated.

Last update: 2025-09-20 18:45:40 UTC


README

This is a fork of the original Simple HTML DOM Parser with namespace & bug fixes.

The only noticeable difference to the original package is the composer installation method and namespace reference.

Changes

Please refer to the CHANGELOG.md for a list of changes.

Installation

composer require axllent/simplehtmldom

Documentation

Please note the use of the namespace:

<?php
$dom = SimpleHtmlDom\:file_get_html($url);
// or
$dom = SimpleHtmlDom\str_get_html($html);

For official documentation and examples refer to the official documentation.