Modern DOM library written in PHP for HTML documents
Find a file
Dustin Wilson fd886d9a3a DataStream fixes
• Removed dependency on ext-mbstring.
• Fixed bug where when using DataStream::consumeUntil and DataStream::consumeWhile where the column would be advanced whether the pointer was moved or not.
2018-08-24 08:35:55 -05:00
lib DataStream fixes 2018-08-24 08:35:55 -05: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 DataStream fixes 2018-08-24 08:35:55 -05:00
composer.lock Rewrote DataStream 2018-08-23 23:17:27 -05:00
LICENSE Added authors file and updated license 2018-08-03 23:21:15 -05:00
README.md Have Parser destroy its instance when finished 2018-08-03 16:57:51 -05:00

HTML5 Parser

A parser for HTML5 written in php. Extremely easy to use. Accepts a string as input and outputs a DOMDocument.

<?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>');
?>