“Array -Wertsuche in PHP” Code-Antworten

PHP -Suche auf Array

//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

Array_search in 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 -Fund in Array

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

Array -Wertsuche in PHP

function searchForId($id, $array) {
   foreach ($array as $key => $val) {
       if ($val['uid'] === $id) {
           return $key;
       }
   }
   return null;
}
Half Unicorn, Half Potato

PHP -String -Suche in Array

// Search a partial string matching in array elements
function array_search_partial($arr, $keyword) {
    foreach($arr as $index => $string) {
        if (strpos($string, $keyword) !== FALSE)
            return $index;
    }
}
Healthy Hippopotamus

Ähnliche Antworten wie “Array -Wertsuche in PHP”

Fragen ähnlich wie “Array -Wertsuche in PHP”

Weitere verwandte Antworten zu “Array -Wertsuche in PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen