Htaccess    html   Php    javascript   Asp   css    maths  Past Questions  Practice Tests Online

domxml open file function syntax tag tutorial 2013 Donate at flattr Flattr this





Alert! Connect with 10,000 Chating Online. Join Now

Php domxml open file () function

Write your php code

 
<?php ?>

Php Result


Your code below



(PHP 4 >= 4.2.1)

domxml_open_file -- Creates a DOM object from XML file

Syntax

domdocument domxml_open_file ( string filename [, int mode [, array &error]] )

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;
}

$root = $dom->document_element();
?>

See also domxml_open_mem(), and domxml_new_doc().

Php domxml open file Function syntax tag

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.


Function index

Variables

Expressions

Operators

Control-Structures

Cookies

Array

Date & Time

Directory function

File

Image

Operators

Form data handling

Mathematics operators

Mail

Php Mysql

Network Functions

Strings

php tutorial guides,functions, classes, code examples and tags for creating simple dynamic site to mysql database driven sites
 
 
Htaccess    html   Php    javascript   Asp   css    maths  Past Questions  Practice Tests Online