oscarotero/html-parser

Parse html strings to DOMDocument

Installs: 1 818 307

Dependents: 1

Suggesters: 0

Security: 0

Stars: 15

Watchers: 4

Forks: 2

Open Issues: 0

Language:HTML

v0.1.8 2023-11-29 20:28 UTC

This package is auto-updated.

Last update: 2024-04-29 21:21:45 UTC


README

Simple utility to parse html strings to DOMDocument.

composer require oscarotero/html-parser

Usage

use HtmlParser\Parser;

$html = '<html><head></head><body>Hello world</body></html>';

//Convert a string to a DOMDocument
$document = Parser::parse($html);

//Convert a string to a DOMDocumentFragment
$fragment = Parser::parseFragment('<p>Hello world</p>');

//Convert a DOMDocument or DOMDocumentFragment to a string
echo Parser::stringify($document);
echo Parser::stringify($fragment);