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...

How can I check if a value is already in an array?

Answer Posted / deep

The above answer is correct. I will just add a complete
example.

<?php
$os = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $os))
{
echo "Got Irix";
}
if (in_array("mac", $os))
{
echo "Got mac";
}
?>

Is This Answer Correct ?    7 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is php.ini & .htacess file?

988


How to register a variable in PHP session?

907


How can we display information of a variable and readable by human with php?

1016


How can we pass the variable through the navigation between the pages?

922


What are the different types of array in php?

920


Write a php function to convert all null values to blank?

1262


What is zend studio for?

939


What is a string in r?

883


Which is better get or post method?

871


How is php different from other languages?

820


How to execute a function in php?

895


How to get elements in reverse order of an array in php?

959


What is the use of mysql_fetch_assoc in php?

926


What is the difference between null and empty?

964


How we can retrieve the data in the result set of mysql using php?

1074