Examveda
Examveda

What will be the output of the following PHP code?
<?php
$a1 = array("red", "green");
$a2 = array("blue", "yellow");
print_r(array_merge($a1, $a2));
?>

A. Array ( [0] => red [1] => green)

B. Array ( [0] => blue [1] => yellow [2] => red [3] => green )

C. Array ( [0] => red [1] => green [2] => blue [3] => yellow )

D. Array ( [0] => blue [1] => yellow )

Answer: Option C

Solution(By Examveda Team)

The array_merge() function merges one or more arrays into one array.

This Question Belongs to PHP >> Arrays

Join The Discussion

Related Questions on Arrays