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

DOMDocument::loadHTMLFile

PHP function Edit on GitHub ✎

(PHP 5, PHP 7, PHP 8)

Load HTML from a file

Description

DOMDocument::loadHTMLFile(string $filename, int $options = 0): bool

The function parses the HTML document in the file named filename. Unlike loading XML, HTML does not have to be well-formed to load.

Html5

Parameters

filename

The path to the HTML file.

options

Options

Return Values

Success

Errors/Exceptions

If an empty string is passed as the filename or an empty file is named, 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->loadHTMLFile("filename.html");
echo $doc->saveHTML();
?>

See Also

  • DOMDocument::loadHTML
  • DOMDocument::saveHTML
  • DOMDocument::saveHTMLFile

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