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 array filter php?

882


> symbol is used to redirect the output of a command. State Whether True or False?

1114


What is the use of Php variables?

1049


How to create a session? How to set a value in session? How to remove data from a session?

933


How to increase the maximum execution time of a script in php?

931


How to write php function in html onclick?

901


Explain difference between urlencode and urldecode?

1051


How to write a program to make chess?

995


What are the Formatting and Printing Strings available in PHP?

1041


Do you know what is the function mysql_pconnect() usefull for?

904


What is dao in php?

930


What is framework in php for beginners?

945


What is default session time and path in php?

1004


How can we encrypt the password using php?

1045


What is session and Cokkies . How it works . tell some thing about Session_id()

1913