360
GetFunctionList
Returns a structure of functions that are available in ColdFusion.
Syntax
GetFunctionList( )
Examples
<!---------------------------------------------------------------
The following code displays a list of ColdFusion functions.
----------------------------------------------------------------->
<CFSET fList = GetFunctionList()>
<CFOUTPUT>#StructCount(fList)# functions<BR><BR></CFOUTPUT>
<cfloop collection="#fList#" item="key">
<CFOUTPUT>#key#<BR></CFOUTPUT>
</cflooP>
CFML Language Reference
Need help?
Do you have a question about the COLDFUSION 4.5-CFML LANGUAGE and is the answer not in the manual?
Questions and answers