Problem Statement
Which function merges two or more arrays into one?
Explanation
array_merge() joins arrays. If keys repeat, later values overwrite earlier ones for string keys.
Code Solution
SolutionRead Only
$result = array_merge($a,$b);
Get the Preplance app for a seamless learning experience. Practice offline, get daily streaks, and stay ahead with real-time interview updates.
Get it on
Google Play
4.9/5 Rating on Store
PHP · Interview Question
Detailed answer, explanation and code for this interview question. Ideal for PHP interview preparation, coding rounds and viva questions.
Which function merges two or more arrays into one?
$result = array_merge($a,$b);

Master PHP with our complete collection of questions, tutorials and guides.