SQL PHP HTML ASP JavaScript articles and free scripts to download
 
 

Checking searching presence of an element inside an array

We can check or search the presence of an element inside an array by using in_array function in PHP. The script below will create an array with some element and then will apply the in_array function to check the presence of an element.

This function will return True or False based on the presence of the search element.






$value= array("Rabin","Reid","Cris","KVJ","John");

if(in_array("Cris",$value)){
echo "Cris is there inside the array";}
else{ echo "Cris is not there ";}


Similar function in searching an array in ASP is Filter()






Join Our Email List
Email:  
For Email Newsletters you can trust
Array Functions
PHP Sections