">
<?php$Student = array ("Ajit", "Rahul", "Ats","Aju");echo (array_search ("Aju", $Student) );?>
The array_search() function searches an array for a specified value, returning its key if located and FALSE otherwise.
Previous Question Next Question
Your comments will be displayed only after manual approval.