The function parses the XML document in
str and returns an object of class "Dom
document", having the properties as listed above. This function,
domxml_open_file() or domxml_new_doc()
must be called before any other function calls.
Optional parameter mode can be used to change the
behavior of this function. It was added in PHP 4.3.0. See
domxml_open_file() for possible values.
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 in a string
<?php include("example.inc");
if (!$dom = domxml_open_mem($xmlstr)) { echo "Error while parsing the document\n"; exit; }
domxml open mem 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 mem 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.