Zum Inhalt springen

array_search macht mich verrückt


Empfohlene Beiträge

hi und hallo,

kann mir jemand erklären wieso hier "false" ausgegeben wird??


$arrTest = Array(0,1,2,3,4);

$key = array_search(0,$arrTest);

if($key == NULL){

     echo("false");

}

denn "0" findet sich doch im array. nämlich an stelle [0]. wenn ich nach 1 oder 2 oder .... suche wird mir nicht false ausgegeben, die zahlen werden also gefunden.

Link zu diesem Kommentar
Auf anderen Seiten teilen

siehe manual:

Description

mixed array_search ( mixed needle, array haystack [, bool strict])

Searches haystack for needle and returns the key if it is found in the array, FALSE otherwise.

Note: If needle is a string, the comparison is done in a case-sensitive manner.

Note: Prior to PHP 4.2.0, array_search() returns NULL on failure instead of FALSE.

If the optional third parameter strict is set to TRUE then the array_search() will also check the types of the needle in the haystack.

If needle is found in haystack more than once, the first matching key is returned. To return the keys for all matching values, use array_keys() with the optional search_value parameter instead.


$arrTest = Array(0,1,2,3,4);
$key = array_search(0,$arrTest);
if(!$key){
echo "Da ist nichts drinn?!?";
} else {
echo "Juhu da ist doch was :)";
}
[/PHP]

oder:

[PHP]
$arrTest = Array(0,1,2,3,4);
$key = array_search(0,$arrTest);
if($key === false){
echo "Da ist nichts drinn?!?";
} else {
echo "Juhu da ist doch was :)";
}

Link zu diesem Kommentar
Auf anderen Seiten teilen

Dein Kommentar

Du kannst jetzt schreiben und Dich später registrieren. Wenn Du ein Konto hast, melde Dich jetzt an, um unter Deinem Benutzernamen zu schreiben.

Gast
Auf dieses Thema antworten...

×   Du hast formatierten Text eingefügt.   Formatierung wiederherstellen

  Nur 75 Emojis sind erlaubt.

×   Dein Link wurde automatisch eingebettet.   Einbetten rückgängig machen und als Link darstellen

×   Dein vorheriger Inhalt wurde wiederhergestellt.   Editor leeren

×   Du kannst Bilder nicht direkt einfügen. Lade Bilder hoch oder lade sie von einer URL.

Fachinformatiker.de, 2024 by SE Internet Services

fidelogo_small.png

Schicke uns eine Nachricht!

Fachinformatiker.de ist die größte IT-Community
rund um Ausbildung, Job, Weiterbildung für IT-Fachkräfte.

Fachinformatiker.de App

Download on the App Store
Get it on Google Play

Kontakt

Hier werben?
Oder sende eine E-Mail an

Social media u. feeds

Jobboard für Fachinformatiker und IT-Fachkräfte

×
×
  • Neu erstellen...