View comments | RSS feed

GetFunctionList

Description

Displays a list of the functions that are available in ColdFusion.

Returns

A structure of functions.

Category

System functions

Function syntax

GetFunctionList()

Example

<!----- This example shows the use of GetFunctionList. ---->
<cfset fList = GetFunctionList()>
<cfoutput>#StructCount(fList)# functions<br><br>
   </cfoutput>
<cfloop COLLECTION = "#fList#" ITEM = "key">
   <cfoutput>#key#<br>
   </cfoutput>
</cfloop>

ColdFusion 9 | ColdFusion 8 | ColdFusion MX 7 | ColdFusion MX 6.1 | ColdFusion MX | Forums | Developer Center | KnowledgeBase | Bug Reporting

Version 7

Comments


tomlitt said on Jun 13, 2005 at 9:18 AM :
IsValid does not appear on the list. I was going to use the structure that this function creates to determine whether the server my code is running on had the IsValid function. If not, then I would define my own alternative. But IsValid is not on the list, so I can't use this method.

Tom

P.S. I know, I know, SERVER.COLDFUSION.PRODUCTVERSION would give me the release version and therefore answer the question, but I thought using GetFunctionList() would be neater.
ASandstrom said on Jun 28, 2005 at 1:41 PM :
In response to tomlitt: Thanks for providing the feedback. I've entered this as a bug (#60446).

 

RSS feed | Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/coldfusion/7/htmldocs/00000480.htm