Which in-built function will add a value to the end of an array?
A
array_unshift()
B
into_array()
C
inend_array()
D
array_push()
Correct Answer: array_push()
array_push adds a value to the end of an array, returning the total count of elements in the array after the new value has been added.