PHP dom_domdocument_load function
Like this blog? Consider exploring one of our sponsored banner ads...
DOMDocument->load()
(no version information, might be only in CVS)
DOMDocument->load() —Load XML from a file
Descriptionclass DOMDocument {
mixed load ( string filename [, int options] )
}
Loads an XML document from a file.
filename
The path to the XML document.
Return Values
Returns TRUE on success or FALSE on failure. If called statically, returns a DOMDocument.
Example 1. Creating a Document
$doc = new DOMDocument(); $doc->load('book.xml'); echo $doc->saveXML();
See Also
DOMDocument->loadXML()DOMDocument->save()DOMDocument->saveXML()
About this entry
You’re currently reading “PHP dom_domdocument_load function,” an entry on BRADINO
- Published:
- 2.26.07 / 1am
- Category:
- PHP Functions
- Tags:
No comments
Jump to comment form | comments rss [?] | trackback uri [?]