“PHP -String -Suche in Array” 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

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 “PHP -String -Suche in Array”

Fragen ähnlich wie “PHP -String -Suche in Array”

Weitere verwandte Antworten zu “PHP -String -Suche in Array” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen