1.

What will be the output of the following PHP code?
 <?php $a = array("a"=>"red", "b"=>"green", "c"=>"blue"); echo array_shift($a); print_r ($a); ?>  

A. Green
B. Red
C. Blue
D. None of the mentioned
Answer» C. Blue


Discussion

No Comment Found