Examveda
Examveda

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: Option B

Solution(By Examveda Team)

The array_shift() function removes the first element from an array, and returns the value of the removed element.

This Question Belongs to PHP >> Arrays

Join The Discussion

Related Questions on Arrays