1.

What will be the output of the following PHP code?
<?php
$City = array("A"=>"Chennai", "B"=>"Noida", "C"=>"Delhi");
echo array_shift($City);
print_r ($City);
?>

A. None of these
Answer» C.


Discussion

No Comment Found

Related MCQs