array
Constructs an array out of the list of parameters.
Syntax
array ( string_expression|array_expression { ,
string_expression|array_expression } )
Example
# csv ( array ( 'a1' , array ( 'x1' , 'x2' ) , 'a2' ) ) #
Result
'a1' , 'x1' , 'x2' , 'a2'