what are the php array methods?
Anónimo
array_push($array, $value) – Adds one or more elements to the end of an array. array_pop($array) – Removes and returns the last element of an array. array_unshift($array, $value) – Adds one or more elements to the beginning of an array. array_shift($array) – Removes and returns the first element of an array.