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

DOMDocument::loadXML

PHP function Edit on GitHub ✎

(PHP 5, PHP 7, PHP 8)

Load XML from a string

Description

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

Loads an XML document from a string.

Parameters

source

The string containing the XML.

options

Bitwise OR of the libxml option constants.

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.

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->loadXML('<root><node/></root>');
echo $doc->saveXML();
?>

See Also

  • DOMDocument::load
  • DOMDocument::save
  • DOMDocument::saveXML

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