PHP Questions Home | Register | Login
Categories
Arrays
Files
Forms
Creating PDFs
PHP Errors
Functions
Images
MySQL
Numbers
Others
Strings
Website
Unanswered

PHP Forums
Forums Index
MySQL Forum
PHP Forum
Flash/Actionscript
Javascript
Web design

More PHP
PHP Functions
Top Questions
Ask a Question
PHP Interview Questions
PHP Jobs
Ecommerce
IT Questions
Business Websites

Sponsors

sponsor ad
My Salary
PHP Developer Salary
Advertise Here

How do I find out if a value is already in an array?


If you don't have a particular requirement for this at the moment, then almost certainly at some time in your PHP programming career you will need to know whether an element is already in an array or not. If it is, you will usually want to take one course of action, and if it isn't, another.

PHP provides a very useful function called in_array that lets you check whether a value is already in the array or not. Here is an example of it in use when we want to check if certain numbers are present in an array or not:

<?php
$numbers 
range(1,10);
$checknumbers = array(1,20,10);
foreach(
$checknumbers as $isitthere) {
if(
in_array($isitthere,$numbers)) { echo "The number $isitthere is in the numbers array\n\n"; }
else { echo 
"The number $isitthere is NOT in the numbers array\n\n"; }
}
?>


This prints:

The number 1 is in the numbers array

The number 20 is NOT in the numbers array

The number 10 is in the numbers array



Comment on this Question and Answer >>>

ASK A QUESTION

More arrays PHP Questions

How do we sort an array of names taken from a text file, displaying only unique names?

How to point internal pointer to first element of an array?

How can I create an array of numbers easily?

How do I return all the values in an array?

How can I reset an array in PHP?



Custom Search