Checks if the XML document object has a child node
xmlHasChild(xmlObject [, childName])
→ returns boolean
Checks the existence of children for two separate nodes in a simple XML document
xmlData = xmlParse('<root><item id="1">Item 1</item><item id="2">Item 2</item><item id="3">Item 3</item></root>');
writeOutput(xmlHasChild(xmlData, "root"));
writeOutput(" " & xmlHasChild(xmlData, "item"));
Expected Result: YES NO
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.