create xml out of node()
This function is deprecated.
Creates an XML document out of all fields of the current node before the field this function is on.
Parameters
Parameter |
Description |
a |
"true" to exclude the XML header line. |
b |
"true" to skip empty fields. |
c |
Suffix for fields to be excluded. |
d |
"true" to use the field description instead of the field name. |
Examples
Assume the following target 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> |