Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is array_search() in php?

Answer Posted / binu.v.pillai

It will search a particular value in an array and if it
find that , it will return corresponding index

<?php
$fruitArray = array(0 => 'orange', 1 => 'apple', 2
=> 'mango', 3 => 'grapes');

$key = array_search('apple', $fruitArray); // $key = 1;
$key = array_search('orange', $fruitArray); // $key = 0;
?>

Is This Answer Correct ?    13 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why would we use === instead of ==?

8907


What does the arrow mean in php?

1071


Will react hooks replace redux?

1019


Explain what does the unset() function means?

1246


What is meant by PEAR in PHP?

1019


What is the difference between session_unregister() and session_unset()?

1157


What is session php?

1005


What is the php function that removes the last element of the array and returns it?

1004


A process can run only in the background. State Whether True or False?

1177


Explain what is meant by pear in php?

1043


What is difference between ksort() and usort() functions.

986


What is use of header() function in php? What the limitation of header()?

1025


What is use of count() function in php?

1096


Tell me what is htaccess?

968


How to call a php function from another php file?

1026