Answers for "if array item has value as array php"

PHP
18

php in array

$colors = array("red", "blue", "green"); 
 
if (in_array("red", $colors)) { 
	echo "found red in array"; 
}
Posted by: Guest on July-01-2019

Code answers related to "if array item has value as array php"

Browse Popular Code Answers by Language