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.
Optional parameter mode can be used to change the
behavior of this function. It was added in PHP 4.3.0. You can use one of
the following constants for it:
DOMXML_LOAD_PARSING (default),
DOMXML_LOAD_VALIDATING or
DOMXML_LOAD_RECOVERING.
You can add to it also DOMXML_LOAD_DONT_KEEP_BLANKS,
DOMXML_LOAD_SUBSTITUTE_ENTITIES and
DOMXML_LOAD_COMPLETE_ATTRS by
bitwise or.
If the error parameter is used, it will contain the
error messages. error must be passed in by
reference. The parameter was
added in PHP 4.3.0.
Example 1. Opening an XML document from a file
<?php
if (!$dom = domxml_open_file("example.xml")) { echo "Error while parsing the document\n"; exit; }
domxml open file php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php domxml open file syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.