Created
August 19, 2018 09:09
-
-
Save trycf/87b44d40d3400dfa97b4d19911b58a07 to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfxml variable="myXMLVar"><myXML><a></a></myXML></cfxml> | |
<cfscript> | |
myXMLVar2 = duplicate(myXMLVar.myXML.a); | |
myXMLVar3 = myXMLVar.myXML.a.duplicate(); | |
writeDump(myXMLVar); | |
writeDump(myXMLVar2); | |
writeDump(myXMLVar3); | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment