Answers for "Which function is used to concate 2 arrays in PHP"

PHP
5

php combine arrays

$output = array_merge($array1, $array2);
Posted by: Guest on June-03-2020
1

php combine values of two arrays

$all_arrays = array_merge($array1, $array2, $array3, ...);
Posted by: Guest on October-31-2020

Code answers related to "Which function is used to concate 2 arrays in PHP"

Browse Popular Code Answers by Language