Modern DOM library written in PHP for HTML documents
Find a file
2019-12-10 16:50:20 -06:00
lib TreeBuilder progress 2019-12-10 16:50:20 -06:00
.gitignore Started HTML content tree building 2018-07-26 16:30:29 -05:00
AUTHORS Added authors file and updated license 2018-08-03 23:21:15 -05:00
composer.json Organization 2018-09-11 09:54:46 -05:00
composer.lock Pushing forward on TreeBuilder 2018-09-19 09:09:36 -05:00
LICENSE Added authors file and updated license 2018-08-03 23:21:15 -05:00
README.md Organization 2018-09-11 09:54:46 -05:00

HTML5

Tools for parsing and printing HTML5 documents and fragments.

<?php
$dom = dW\HTML5\Parser::parse('<!DOCTYPE html><html lang="en" charset="utf-8"><head><title>Ook!</title></head><body><h1>Ook!</h1><p>Ook-ook? Oooook. Ook ook oook ook oooooook ook ooook ook.</p><p>Eek!</p></body></html>');
?>

or:

<?php
$dom = new dW\HTML5\Document;
$dom->loadHTML('<!DOCTYPE html><html lang="en" charset="utf-8"><head><title>Ook!</title></head><body><h1>Ook!</h1><p>Ook-ook? Oooook. Ook ook oook ook oooooook ook ooook ook.</p><p>Eek!</p></body></html>');
?>