1.

What will be the output of the following PHP code?
<?php
$First = array("001" => "Ajit", "002" => "Ats", "003" => "Aju");
echo array_shift($First);
echo " n";
array_pop($First);
print_r($First);
?>

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


Discussion

No Comment Found

Related MCQs