1.

What will be the output of the following PHP code ?
<?php
$Emp1 = array("Ajit", "Rahul");
$Emp2 = array("Ats", "Aju");
print_r(array_replace($Emp1, $Emp2));
?>

A. Nothing
B. Error
C. None of these
Answer» B. Error


Discussion

No Comment Found

Related MCQs