Ahamad
Member since Dec 11, 2008
- Profile: /members/1291-ahamad.htm
- URL: http://coldfusion8.blogspot.com
- Comments: 2
Recent Blog Comments By Ahamad
-
Learning ColdFusion 8: Implicit Struct And Array Creation
Posted on Apr 8, 2008 at 6:53 AM
Hi, With the CF8 updater 1(8.0.1), we support Implicit nested array/struct creation. Here are a few simple examples. <cfset array1 = [ ["10", "20"], ["30", "40"] ]> <cfset struct1 = { str1 = {key1 = "10", key2 = "20"}, str2 = {key3 = "30", key4 = "40"} }>... read more »
-
Learning ColdFusion 8: Implicit Struct And Array Creation
Posted on Apr 2, 2008 at 8:12 AM
Hi, Currently, nested struct/array creation is not supported for: 1. Passing implicit structures/arrays to functions calls. This is NOT allowed MyName = MyStruct({ First = "Adobe", Last = "ColdFusion"}); 2. Returning implicit structures/arrays as values. This is NOT allowed <cfreturn { Firs... read more »