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 / jude jeevanraj.p

If you wish to check whether a value is already stored in
an array or not, then use the in_array function.

This is useful when you don't want any duplicates in the
array and therefore only want to add a value if it's not
already there. The first argument is the string you are
testing for and the second is the array you are checking
against.

Here is an example of in_array in action:

<?php
$values = array("banana","apple","pear","banana");
$newvalue = "pear";
if (in_array

Is This Answer Correct ?    7 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to count all the lines of code in a directory and sub folder?

1030


How check variable is set or not in php?

940


What is var_dump?

1068


How to retrieve the original query string?

1133


How is csrf token generated?

1044


What is trim codeigniter?

1029


How to Pass JSON Data in a URL using CURL in PHP?

1123


Can I learn laravel without php?

1068


Name some of the constants in php and their purpose.

1041


Write logic to print Floyd's triangle in PHP?

1111


What is the difference between explode and split?

1182


what is PDO?

1316


What is form action php?

1070


Can php variables have numbers?

1056


What are the rules for naming a php variable?

1122