PHP Manuál | ||
---|---|---|
Predchádzajúci | Nasledujúci |
empty() returns FALSE if var has a non-empty and non-zero value. In otherwords, "", 0, "0", NULL, FALSE, array(), var $var;, and objects with empty properties, are all considered empty. TRUE is returned if var is empty.
empty() is the opposite of (boolean) var, except that no warning is generated when the variable is not set. See converting to boolean for more information.
Príklad 1. A simple empty() / isset() comparison.
|
Poznámka: Pretože toto je jazyková konštrukt a nie funkcia, nemôže sa volať pomocou funkcií premennej
Poznámka: empty() only checks variables as anything else will result in a parse error. In otherwords, the following will not work: empty(addslashes($name)).
See also isset(), unset(), array_key_exists(), count(), strlen(), and the type comparison tables.
Predchádzajúci | Domov | Nasledujúci |
doubleval | Hore | floatval |