Description
object
domxml_open_file ( string filename)
The function parses the XML document in the file named
filename and returns an object of class
"Dom document", having the properties as listed above_
The file is accessed read_only_
Ejemplo 1_ Opening a xml document from a file <?php
if(!$dom = domxml_open_file("example_xml")) {
echo "Error while parsing the document\n";
exit;
}
$root = $dom_>document_element();
?> |
|
See also domxml_open_mem(),
domxml_new_doc()_