(no version information, might be only in CVS)
Loads an XML document from a file.
filename
The path to the XML document.
Returns TRUE on success or FALSE on failure. If called statically, returns a DOMDocument.
Example 1. Creating a Document
<?php$doc = new DOMDocument();$doc->load('book.xml');echo $doc->saveXML();?>