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 are default session time and path?

1122


How do you display the output directly to the browser?

929


Will react hooks replace redux?

965


Which is the best php framework for a beginner?

1005


Explain what is the difference between session and cookie?

1047


How is a session id generated?

1003


What is the scope of a variable defined outside a function?

1046


What is c++ polymorphism?

965


What is the default time of cookie in php?

992


What is escape data in php?

943


What is $globals php?

1020


What is the use of ajax in php?

1005


Tell me how can we get the error when there is a problem to upload a file?

999


Explain the types of functions for Splitting String?

1013


What is difference between isset and empty in php?

1005