Answers for "php if( in_array("

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
15

php value in array

in_array ( mixed $needle , array $haystack , bool $strict = false ) : bool
Posted by: Guest on January-28-2021

Browse Popular Code Answers by Language