1.

What will be the output of the following PHP code?
<?php
$First = array_fill(1, 4, "Interview");
$Second = array_fill(5, 1, "Mania");
$Third = array_merge($First, $Second);
print_r($Third);
echo " n";
print_r($Second);
?>

A. None of these
Answer» E.


Discussion

No Comment Found

Related MCQs