Simply use, array_merge() to concatenate two arrays in PHP. Let’s say the following are out arrays −
$nameArray1 = array('John','David');
$nameArray2 = array('Mike','Sam');Now, set both the above arrays in array_merge() to concatenate them.
The syntax is as follows −
array_merge($yourFirstArrayName, $yourSecondArrayName);
Example
The PHP code is as follows
<!DOCTYPE html>
<html>
<body>
<?php
$nameArray1 = array('John','David');
$nameArray2 = array('Mike','Sam');
$result = array_merge($nameArray1, $nameArray2);
print_r($result);
?>
</body>
</html>Output
This will produce the following output
Array ( [0] => John [1] => David [2] => Mike [3] => Sam )