

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code ?
<?php $a = array("a" => "Jaguar", "b" => "Land Rover", "c" => "Audi", "d" => "Maseratti"); echo array_search("Audi", $a); ?> |
A. | a |
B. | b |
C. | d |
D. | d |
Answer» D. d | |