php8.5
Home/ Manual/ dom / domdocument/ DOMDocument::loadHTML

DOMDocument::loadHTML

PHP function Edit on GitHub ✎

(PHP 5, PHP 7, PHP 8)

Load HTML from a string

Description

DOMDocument::loadHTML(string $source, int $options = 0): bool

The function parses the HTML contained in the string source. Unlike loading XML, HTML does not have to be well-formed to load.

Html5

Parameters

source

The HTML string.

options

Options

Return Values

Success

Errors/Exceptions

If an empty string is passed as the source, a warning will be generated. This warning is not generated by libxml and cannot be handled using libxml's error handling functions.

Malformederror

Changelog

VersionDescription
8.3.0This function now has a tentative bool return type.
8.0.0Calling this function statically will now throw an Error. Previously, an E_DEPRECATED was raised.

Examples

Creating a Document

php
<?php
$doc = new DOMDocument();
$doc->loadHTML("<html><body>Test<br></body></html>");
echo $doc->saveHTML();
?>

See Also

  • DOMDocument::loadHTMLFile
  • DOMDocument::saveHTML
  • DOMDocument::saveHTMLFile

Source: reference/dom/domdocument/loadhtml.xml · from the official PHP manual (php/doc-en)