DOMDocument::loadHTMLFile
(PHP 5, PHP 7, PHP 8)
Load HTML from a file
Description
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
filenameThe path to the HTML file.
optionsOptions
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
| Version | Description |
|---|---|
| 8.3.0 | This function now has a tentative bool return type. |
| 8.0.0 | Calling this function statically will now throw an Error. Previously, an E_DEPRECATED was raised. |
Examples
Creating a Document
<?php
$doc = new DOMDocument();
$doc->loadHTMLFile("filename.html");
echo $doc->saveHTML();
?>See Also
DOMDocument::loadHTMLDOMDocument::saveHTMLDOMDocument::saveHTMLFile