| Contents > CFML Reference > ColdFusion Functions > ArrayResize |
|
|
|
|
||
Resets an array to a specified minimum number of elements. This can improve performance, if used to size an array to its expected maximum. For more than 500 elements, use ArrayResize immediately after using the ArrayNew tag.
ColdFusion arrays expand dynamically as data is added.
True, on successful completion.
ArrayResize(array, minimum_size)
Parameter |
Description |
|---|---|
array |
Name of an array |
minimum_size |
Minimum array size |
<h3>ArrayResize Example</h3> <!--- perform a query to get the list ---> <cfquery name = "GetCourses" datasource = "cfsnippets"> SELECT * FROM Courses </cfquery> <!--- make a new array ---> <cfset MyArray = ArrayNew(1)> <!--- resize that array to the number of records in the query ---> <cfset temp = ArrayResize(MyArray, GetCourses.RecordCount)> <cfoutput> The array is now #ArrayLen(MyArray)# elements, to match the query of #GetCourses.RecordCount# records. </cfoutput>
|
|
||
| Contents > CFML Reference > ColdFusion Functions > ArrayResize |
|
|
ColdFusion 9 | ColdFusion 8 | ColdFusion MX 7 | ColdFusion MX 6.1 | ColdFusion MX | Forums | Developer Center | Bug Reporting
Version 6.1
Comments are no longer accepted for ColdFusion MX 6.1. ColdFusion 8 is the current version.
Send me an e-mail when comments are added to this page | Comment Report
Current page: http://livedocs.adobe.com/coldfusion/6.1/htmldocs/functa14.htm