Name

GetFunctionList — New as of ColdFusion 4.5

Synopsis

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>

Get Programming ColdFusion now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.