gpt4 book ai didi

syntax - 是否可以在 ColdFusion 中取消定义变量?

转载 作者:行者123 更新时间:2023-12-02 11:30:24 24 4
gpt4 key购买 nike

是否可以在 ColdFusion 中取消定义变量?

例如,像这样:

<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>

最佳答案

<cfset StructDelete(Variables, "myVar") />

变量是大多数上下文中大多数变量的默认范围。

关于syntax - 是否可以在 ColdFusion 中取消定义变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1104951/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com