create xml out of node(a,b,c,d)
Group |
This function is deprecated.
Creates an XML document out of all fields of the current node. Only fields in front of this function are included.
Description of Parameters
Parameter |
Description |
a |
true to exclude XML header line. |
b |
true to skip empty fields. |
c |
Suffix for fields to be excluded. |
d |
true to use the description instead of the field name. |
Examples
Assume the following destination structure.
Parameter a |
Parameter b |
Parameter c |
Parameter d |
Result |
true |
true |
_skip |
false |
<XmlNode> <Demo>123</Demo> </XmlNode> |
false |
true |
_skip |
false |
<?xml version="1.0" encoding="UTF-8"?> <XmlNode> <Demo>123</Demo> </XmlNode> |
true |
true |
false |
<XmlNode> <Demo>123</Demo> <Not_there_skip></Not_there_skip> </XmlNode> |