August 2003
Intermediate to advanced
1140 pages
68h 45m
English
IsXmlRoot
IsXmlRoot(value)Returns true if value is the
root element of an XML document object. Example:
<cfhttp URL="http://www.macromedia.com/devnet/resources/macromedia_resources.xml"
method="Get">
<cfset DesDev = XmlParse(cfhttp.FileContent)>
<cfoutput>
Is DesDev.macromedia_resources.resource.title the XML root?
#IsXmlRoot(DesDev.macromedia_resources.resource.title)#
</cfoutput>To see the structure of the XML document object, use the
cfdump tag.