PHP code example of hexydec / htmldoc
1. Go to this page and download the library: Download hexydec/htmldoc library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hexydec / htmldoc example snippets
use hexydec\html\htmldoc;
$doc = new htmldoc();
// load from a variable
if ($doc->load($html) {
// minify the document
$doc->minify();
// compile back to HTML
echo $doc->save();
}
use hexydec\html\htmldoc;
$doc = new htmldoc();
// load from a URL this time
if ($doc->open($url) {
// extract text
$text = $doc->find('.article__body')->text();
// extract attribute
$attr = $doc->find('.article__author-image')->attr('src');
// extract HTML
$html = $doc->find('.article__body')->html();
}