axllent / simplehtmldom
PHP Simple HTML DOM Parser with namespace & bug fixes
Installs: 16 458
Dependents: 2
Suggesters: 0
Security: 0
Stars: 9
Watchers: 5
Forks: 2
Open Issues: 0
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2024-10-20 16:26:12 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.