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 / sivanandareddy

The array_search() function search an array for a value and returns the key.


Syntax:..array_search(value,array,strict)


Parameter Description

value Required. Specifies the value to search for
array Required. Specifies the array to search in
strict Optional. Possible values:
true
false - Default
When set to true, the number 5 is not the same as the string 5 (See example 2)


Example 1

<?php
$a=array("a"=>"Dog","b"=>"Cat","c"=>"Horse");
echo array_search("Dog",$a);
?>
The output of the code above will be:

a

Example 2

<?php
$a=array("a"=>"5","b"=>5,"c"=>"5");
echo array_search(5,$a,true);
?>
The output of the code above will be:

b

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is mean tnq

1478


What is the difference between array_merge() and array_merge_recursive() in php?

1000


Tell me in php, objects are they passed by value or by reference?

916


What is the array in php?

954


Which is the correct way to check if a session has already been started ?

932


How to count a number of words in a string in php?

917


How long does a session last in php?

904


What is use of isset function in php?

993


What is the use of inner join in mysql?

935


Who is known as the father of php?

1064


What is php's mysqli extension?

970


What is the $_ server php_self variable?

944


How to return ascii value of character in php?

1057


Is apache needed for php?

865


Which is used to maintain the value of a variable over different pages?

970