Skip to main content

array_append

Returns an array containing all elements from the source array as well as the new element. The new element is located at the end of the array.

Syntax

array_append( <array> , <new_element> )

Arguments

<array>

The source array.

<new_element>

The element to be appended.

The element can be of any data type. The data type can be different from the data type(s) of the existing elements in the array.

Returns

The data type of the returned value is ARRAY.

If the source array is NULL, the function returns NULL.