English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I used my computer when message came

""unction.DOMDocument-loadXML"

Please what is this meaning

2007-06-07 18:57:53 · 1 answers · asked by Mushi S 2 in Education & Reference Words & Wordplay

1 answers

It appears to have something to do with
"loading an XML document into your computer"
(see below)

I would repost your question on the section for
computer questions, or search online for an active
forum for computer users and post it there
===========================================
When I searched for "function.DOM Document-loadXML"
I found these were phrases from programming language:

"static public function importXMLFile($fXML)
- {
- $document = new DOMDocument();
- $document->load($fXML);
- return $document;
- }
-
- /**
- * $fsXML is a file stream. Convert the stream to a
- * DOM
- *
- * @param resource $fsXML
- *
- * @return DOMDocument $document
- */
- static public function importXMLFileStream($fsXML)
========================================
I also found this explanation of XML and DOM:

http://www.xmlfiles.com/dom/dom_intro.asp

The XML DOM
by Jan Egil Refsnes


--------------------------------------------------------------------------------

The Document Object Model
The DOM is a programming interface for HTML and XML documents. It defines the way a document can be accessed and manipulated.

Using a DOM, a programmer can create a document, navigate its structure, and add, modify, or delete its elements.

As a W3C specification, one important objective for the DOM has been to provide a standard programming interface that can be used in a wide variety of environments and applications.

The W3C DOM has been designed to be used with any programming language.

--------------------------------------------------------------------------------

The Node Interface
As you will se in the next section, a program called an XML parser can be used to load an XML document into the memory of your computer. When the document is loaded, it's information can be retrieved and manipulated by accessing the Document Object Model (DOM).

The DOM represents a tree view of the XML document. The documentElement is the top-level of the tree. This element has one or many childNodes that represent the branches of the tree.

A Node Interface is used to read and write (or access if you like) the individual elements in the XML node tree. The childNodes property of the documentElement can be accesses with a for/each construct to enumerate each individual node.

The Microsoft XML parser used to demonstrate the DOM in this Web, supports all the necessary functions to traverse the node tree, access the nodes and their attribute values, insert and delete nodes, and convert the node tree back to XML.

All the demonstrated Microsoft XML parser functions are from the official W3C XML DOM recommendation, apart from the load and loadXML functions. (Believe it or not: The official DOM does not include standard functions for loading XML documents !!)

2007-06-08 13:44:39 · answer #1 · answered by Nghiem E 4 · 0 0

fedest.com, questions and answers