August 2001
Intermediate to advanced
976 pages
38h 8m
English
GetFunctionList — New as of ColdFusion 4.5
GetFunctionList( )
Returns a ColdFusion structure containing the names of the functions available to ColdFusion. Example:
<CFSET MyFunctionList = GetFunctionList( )> <CFOUTPUT> There are #StructCount(MyFunctionList)# functions available in this version of ColdFusion for #Server.OS.Name#. </CFOUTPUT> <CFLOOP COLLECTION="#MyFunctionList#" ITEM="FunctionName"> <CFOUTPUT>#FunctionName#<BR></CFOUTPUT> </CFLOOP>
Read now
Unlock full access