ColdFusion 8 – List of New Functions?
Wednesday 30 May 2007 - Filed under Code
I installed ColdFusion 8 at lunch today and have been trying to get some of my old apps up and running.
One issue I ran into immediately was:
The names of user-defined functions cannot be the same as built-in ColdFusion functions.
The name isInstanceOf is the name of a built-in ColdFusion function
It appears there are some new functions that conflict with existing functions I previously created.
So far I’ve run into:
- isInstanceOf
- isUserInAnyRole
Commenting out my functions allows things to work.
Has anyone stumbled across a concise list of new functions yet? If so leave a comment! :)
2007-05-30 » Jim Priest
30 May 2007 @ 1:13 pm
Go to
http://labs.adobe.com/technologies/coldfusion8/
click on ‘Product Details’ and download the CFML Reference. Then go to page 877.
30 May 2007 @ 1:39 pm
Why not try out getfunctionlist()? It will give you a list of all the functions CF knows about.
30 May 2007 @ 2:13 pm
Great info guys! Thanks! Too bad I have “work” to do so I can’t play! :(
30 May 2007 @ 3:59 pm
I was gonna say what Nathan said…
You could also try cfdumping getPageContext().getPage() and you’ll see most functions available in all their Java glory.
30 May 2007 @ 10:46 pm
In this instance – Sam’s low-tech “RTFM” turned out to be the easiest. There is a nice chart of available functions and what CF release they were introduced.