PHP
Referenzliste
is_null
Variablen-Funktionen
Befehl:
bool is_null ( mixed $var )
Parameter-Liste:
Beschreibung | |
---|---|
Die zu prüfende Variable. |
Beschreibung:
Prüft ob die gegebene Variable
NULL
enthält Aktiv in Version:
(PHP 4 >= 4.0.4, PHP 5, PHP 7)
Siehe auch:
• isset()
Prüft, ob eine Variable existiert und ob sie nicht NULL ist
Prüft, ob eine Variable vom Typ boolean ist
Prüft, ob eine Variable eine Zahl oder ein numerischer String ist
Prüft, ob eine Variable vom Typ float ist
• is_int()
Prüft, ob eine Variable vom Typ int ist
Prüft, ob Variable vom Typ string ist
Prüft, ob eine Variable vom Typ object ist
Prüft, ob die Variable ein Array ist
is_null() - Beispiel:
Eingabe:
<?php error_reporting(E_ALL); $foo = NULL; var_dump(is_null($inexistent), is_null($foo)); ?>
Ausgabe:
Notice: Undefined variable: inexistent in ...
bool(true)
bool(true)
bool(true)
bool(true)
Beschreibung:
Die Funktion is_null() �berpr�ft, ob eine Variable (var) vom Typ NULL ist. Sie liefert true zur�ck, wenn es sich bei der Variablen um ein NULL handelt, sonst false.
Variablen-Funktionen