1.

What will be the output of the following PHP code?
<?php
$Name1 = array_fill(2, 3, "Ajit Kumar Gupta");
$Name2 = array_fill(1, 2, "Ats Yogi");
print_r($Name1);
print_r($Name2);
?>

A. None of these
Answer» B.


Discussion

No Comment Found

Related MCQs