xmlDumpDump a XML objectCalling Sequence
str = xmlDump(xmlObj [, indent])
ArgumentsxmlObjxmlObj, a XML mlistindentindent, a booleanstrstr, a matrix of stringsDescriptionDump a XML object. The objects which are dumpable are XMLDoc, XMLElement or XMLList. If indent is false (by default it is true), no indentation and carriage return will be added.ExamplesHello");
// Dump a document
xmlDump(doc)
// Dump a document without indentation
xmlDump(doc, %f)
// Dump a node list
xmlDump(doc.root.children)
//Dump an element
xmlDump(doc.root.children(1))
xmlDelete(doc);
]]>See Also
xmlWrite
History5.4.0XML module introduced.