Syntax:mixed DOMDocument::load (string $filename, int $options = 0)
Parameters:This function takes two parameters as above and described below: - $filename :this parameter contains the path to the XML document.
- $options:this parameter contains the bitwise OR of the libxml option constants.
Return Value:This function returns TRUE on success or FALSE on failure. This function returns DOMDocument if called statically, or FALSE on failure.The following programs illustrate the DOMDocument::load() function in PHP:gfg.xml <
user
>
<
username
> Geeks123 < /
username
>
<
name
> GeeksforGeeks < /
name
>
<
address
>
<
phone
> + 91-XXXXXXXXXX < /
phone
>
<
email
> [email protected]< /
email
>
< /
address
>
< /
user
>
Program:
// Create a new DOMDocument
$doc
=
new
DOMDocument();
// Load XML file into document
$doc
-> load (
’gfg.xml’
);
// Create an XML document and display it
echo
$doc
-> saveXML();
?>
Output:< user > < username > Geeks123 < / username > < name > GeeksforGeeks < / name > + 91-XXXXXXXXXX < / phone > < email > [email protected]< / email > < / user >
Link: https://www .php.net / manual / en / domdocument.load.php