Answers for "php in arrya"

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
2

array in php

<?php

$cars = array("Maserati", "Porsche", "BMW");

echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . ".";

?>
Posted by: Guest on May-23-2020

Browse Popular Code Answers by Language