“in Arrray PHP” Code-Antworten

In_array in PHP

$myArr = [38, 18, 10, 7, "15"];

echo in_array(10, $myArr); // TRUE
echo in_array(19, $myArr); // TRUE

// Without strict check
echo in_array("18", $myArr); // TRUE
// With strict check
echo in_array("18", $myArr, true); // FALSE
Allen

in Arrray PHP

$arr = array('php','java','python');

if ( in_array( 'java', $arr ) ) {

  echo 'available';

}else{

  echo 'not available';

}
Black Bat

Ähnliche Antworten wie “in Arrray PHP”

Fragen ähnlich wie “in Arrray PHP”

Weitere verwandte Antworten zu “in Arrray PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen