Question
Does CFFUNCTION Outside of a Component Create an Object?
I created a user-defined function using the cffunction tag,
but this function is NOT wrapped within a component (cfcomponent
tag); rather, it's created just like functions that are written
using cfscript; it's just that my particular function uses the
cffunction tag instead of cfscript. I then call the function just
like I would call a function written using cfscript:
#myFunction(someArgument)#. I would like to know whether this
approach will create an object when the function is called. My
guess is a resounding no, since this seems to be just a plan old
function, and no CFCs are involved. Thanks!
