Guest User

Untitled

a guest
Sep 25th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <cfscript>
  2. files = [
  3. {".tag": "a"},
  4. {".tag": "b"},
  5. {".tag": "c"}
  6. ];
  7.  
  8. </cfscript>
  9.  
  10. <cfloop from="1" to="#arrayLen(files)#" index="fileIndex">
  11. <cfset file = files[fileIndex] />
  12. <cfdump var="#files[fileIndex]#" />
  13. <cfoutput>#files[fileIndex][".tag"]#</cfoutput>
  14. </cfloop>
Add Comment
Please, Sign In to add comment