1.

What will be the output of the following PHP code?
<?php
$Student = array ("Ajit", "Rahul", "Ats",
"Aju");
echo (array_search ("Aju", $Student) );
?>

A. 1
B. 2
C. 3
D. True
E. False
Answer» D. True


Discussion

No Comment Found

Related MCQs