“php trouver dans le tableau” Réponses codées

Recherche PHP sur le tableau

//array_search
$result = array_search("apple", $fruit_array); // return index or false

//in_array
$result = in_array("apple", $fruit_array); // return true or false
Snippets

Vérifiez si le tableau a une valeur 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

array_search en php


<?php
$array = array(0 => 'blue', 1 => 'red', 2 => 'green', 3 => 'red');

$key = array_search('green', $array); // $key = 2;
$key = array_search('red', $array);   // $key = 1;
?>

Kaotik

php trouver dans le tableau

//array_search
$result = array_search("apple", $fruit_array); // return index or false
Dead Dotterel

php trouver dans le tableau

<?php
$stack = array("orange", "banana");
array_push($stack, "apple", "raspberry");
print_r($stack);
?>
Nasty Nightingale

php trouver dans le tableau

//in_array
$result = in_array("apple", $fruit_array); // return true or false
Dead Dotterel

Réponses similaires à “php trouver dans le tableau”

Questions similaires à “php trouver dans le tableau”

Plus de réponses similaires à “php trouver dans le tableau” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code