vote up 5 vote down star
1

Is it possible to undefine a variable in ColdFusion?

For example, something like this:

<cfset myVar = "lsajflksd" />
<cfoutput>
  <p>myVar is Defined? #IsDefined("myVar")#</p> <!--- Prints YES --->
</cfoutput>
<cfset Undefine(myVar) /> <!--- Doesn't exist... --->
<cfoutput>
  <p>myVar is Defined? #IsDefined("myVar")#</p> <!--- I want it to print NO --->
</cfoutput>
flag

2 Answers

vote up 17 vote down check
<cfset StructDelete(Variables, "myVar") />

Variables is the default scope for most variables in most contexts.

link|flag
that works, thanks! – Kip Jul 9 at 16:28
Note that this is a recent feature. Older versions of CF can't do this. – Al Everett Jul 9 at 18:33
Sorry. All I know is Adobe CF 8.01. – Justice Jul 9 at 18:40
Though it should work all the way back to MX6 at least. – Leigh Jul 10 at 2:38
vote up 4 vote down

FYI...

<cffunction name="voidFunc" returntype="void">
</cffunction>

<cfset myVar = voidFunc()>
<cfoutput>#IsDefined("myVar")#</cfoutput>    <!--- will show NO --->

I found out from this blog entry: cfinvoke destroys returnVariable for methods that return void

link|flag
interesting.... – Kip Jul 10 at 17:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.