ejklock / simplehtmldom
A fast, simple and reliable HTML document parser for PHP.
Requires
- php: >=5.6
- ext-iconv: *
Requires (Dev)
- phpunit/phpunit: ^6 || ^7
Suggests
- ext-curl: Needed to support cURL downloads in class HtmlWeb
- ext-mbstring: Allows better decoding for multi-byte documents
- ext-openssl: Allows loading HTTPS pages when using cURL
This package is auto-updated.
Last update: 2024-12-24 16:34:38 UTC
README
simplehtmldom is a fast and reliable HTML DOM parser for PHP.
Key features
- Purely PHP-based DOM parser (no XML extensions required).
- Works with well-formed and broken HTML documents.
- Loads webpages, local files and document strings.
- Supports CSS selectors.
Requirements
simplehtmldom requires PHP 5.6 or higher with ext-iconv enabled. Following extensions enable additional features of the parser:
- ext-mbstring (recommended)
Enables better detection for multi-byte documents. - ext-curl
Enables cURL support for the classHtmlWeb
. - ext-openssl (recommended when using cURL)
Enables SSL support for cURL.
Installation
Manually:
Download the latest release from SourceForge and extract the files in the vendor folder of your project.
Composer:
composer require simplehtmldom/simplehtmldom
Git:
git clone git://git.code.sf.net/p/simplehtmldom/repository simplehtmldom
Note: The GitHub repository serves as a mirror for the SourceForge project. We currently accept pull requests and issues only via SourceForge.
Usage
This example illustrates how to return the page title:
Manually
<?php
include_once 'HtmlWeb.php';
use simplehtmldom\HtmlWeb;
$client = new HtmlWeb();
$html = $client->load('https://www.google.com/search?q=simplehtmldom');
// Returns the page title
echo $html->find('title', 0)->plaintext . PHP_EOL;
Using composer
<?php
include_once 'vendor/autoload.php';
use simplehtmldom\HtmlWeb;
$client = new HtmlWeb();
$html = $client->load('https://www.google.com/search?q=simplehtmldom');
// Returns the page title
echo $html->find('title', 0)->plaintext . PHP_EOL;
Find more examples in the installation folder under examples
.
Documentation
The documentation for this library is hosted at https://simplehtmldom.sourceforge.io/docs/
Getting involved
There are various ways for you to get involved with simplehtmldom. Here are a few:
- Share this project with your friends (Twitter, Facebook, ...you name it...).
- Report bugs (SourceForge).
- Request features (SourceForge).
- Discuss existing bugs, features and ideas.
If you want to contribute code to the project, please open a feature request and include your patch with the message.
Authors
- S.C. Chen
- John Schlick
- logmanoriginal
- Rus Carroll
- Yousuke Kumakura
- Vadim Voituk
License
The source code for simplehtmldom is licensed under the MIT license. For further information read the LICENSE file in the root directory (should be located next to this README file).
Technical notes
simplehtmldom is a purely PHP-based DOM parser that doesn't rely on external libraries like libxml, SimpleXML or PHP DOM. Doing so provides better control over the parsing algorithm and a much simpler API that even novice users can learn to use in a short amount of time.