(no version information, might be only in CVS)
Loads an XML document from a file.
filename
The path to the XML document.
如果成功则返回 TRUE,失败则返回 FALSE。 If called statically, returns a DOMDocument.
例 1. Creating a Document
<?php $doc = new DOMDocument(); $doc->load('book.xml'); echo $doc->saveXML(); ?>