XML

Build

Convert an object to an XML string.

Inputs

  • doctype: The desired doctype of your XML document, may be left blank.
  • encoding: This value determines the character encoding used in this XML document. Defaults to UTF-8
  • indent: This value determines how an indent is defined in your XML document, may be left blank.
  • newline: This value determines how a newline is defined in your XML document, may be left blank.
  • object: The object you would like to interpret into XML.
  • pretty: This value determines whether or not you want this XML document to rendered in “pretty” style.
  • rootName: The root name of your XML document, may be left blank.
  • standalone: Determines whether or not this XML document has an internal DTD. If false, the XML document has an external DTD.
  • version: This value determines what version of XML standard this will use. Defaults to 1.0

Outputs

  • xml: The processed and returned XML object.