Onetastic Macro Documentation >
>
>
Array_Values Array_Values
Returns a new array that contains the values of the given array. The new array will have numeric keys starting at zero.
Syntax
Array Array_Values(Array array)
Parameters
- Array array
- Array return the values of.
Examples
$array["color"] = "red"
$array["size"] = "large"
$array["type"] = "t-shirt"
$array["price"] = 10
$values = Array_Values($array)
|