ColdFusion - How to determine whether a structure contains data

StructIsEmpty() - determine whether a structure contains data

StructIsEmpty.cfm


<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>StructIsEmpty function example: how to determine whether a structure contains data</title>
</head>

<body>
<h2 style="color:HotPink">StructIsEmpty Function Example</h2>

<cfset Color=StructNew()>
<cfset Color.ID=1>
<cfset Color.Name="LightBlue">
<cfset Color.Value="##ADD8E6">

<cfoutput>
<b>
Color Structure Is Empty?: #StructIsEmpty(Color)#
</b>
</cfoutput>
<cfdump var="#Color#" label="Color">

<cfset Temp=StructClear(Color)>
<br />
<cfoutput>
<b>
Color Structure Is Empty[after remove all data]?: #StructIsEmpty(Color)#
</b>
</cfoutput>
<cfdump var="#Color#" label="Color[after clear]">

</body>
</html>






More ColdFusion examples