Tuesday, August 5, 2008

Array

<cfset a=ArrayNew(1)> (array Creating)
<cfloop from=0 to=10 index="i">

<cfset ArrayAppend(a,i)> (array element inserting)

</cfloop>

<cfloop from=5 to=10 index="i">
<cfoutput> #a[i]#</cfoutput>
</cfloop>

ArrayAppend (add element in end)
ArrayPrepend (add element at begin)
ArrayInsertAt (array element at nth position)

No comments: