9951 explained code solutions for 126 technologies


phpHow to append multiple elements to array


array_push($myarray, 3, 4, 5);ctrl + c
$myarray

the array to push element to

3, 4, 5

list of values to append (can be any number of values)

array_push

will append specified values (2... arguments) to given array (first argument)