MakeItem
Syntax:
MakeItem name [key1=]var1 [[key2=]var2 ... [keyN=]varN]
It forms a variable name from var1 [var2 ... varN], which will contain an object (associative array) with properties, created from the variables. In other words, an object can be made by means of grouping the variables var1 [var2 ... varN]. The names of the attributes can be given with the help of the parameters key1…keyN.
Example:
# declare valiables "a", "b" and "c" Set a foo Set b bar Set c foobar # create an object MakeItem d x=a y=b c # show result Dump d
Result:
d => Array(
[x] => foo
[y] => bar
[c] => foobar
)
| MakeArray | Standart Directives | Set |

