StructValueArray()
Returns an Array with the values of the Struct
Introduced: 5.3.8.117
StructValueArray( struct=struct );
Returns: Array
Argument | Description |
---|---|
struct
struct,
required
|
Structure from which to extract a list of keys Alias: structure, object |
Examples
animals = {
cow: "moo",
pig: "oink",
cat: "meow",
bird: "chirp"
};
writedump(structValueArray(animals ))
See also
- Structures
- struct.valueArray()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)