GETFUNCTIONLIST  
説明

ColdFusion で使用できる関数のリストを表示します。

 
戻り値

関数の構造体

 
カテゴリ

システム関数

 
関数のシンタックス
GetFunctionList()
 
<!----- この例は、GetFunctionList の使用方法を示しています。 ---->
<cfset fList = GetFunctionList()>
<cfoutput>#StructCount(fList)# functions<br><br>
   </cfoutput>
<cfloop COLLECTION = "#fList#" ITEM = "key">
   <cfoutput>#key#<br>
   </cfoutput>
</cfloop>