Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trycf/0db692627ccefdfbe436e756988c10c1 to your computer and use it in GitHub Desktop.
Save trycf/0db692627ccefdfbe436e756988c10c1 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfxml variable="myXMLVar"><myXML><child></child></myXML></cfxml>
<cfscript>
writeOutput(myXMLVar.myXML.hasChild())//YES (good)
writeOutput(myXMLVar.myXML.child.hasChild())//YES (bad)
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment