PHP has different functions which can be used to test the value of a variable. Three useful functions for this are isset(), empty() and is_null(). All these function return a boolean value. If these functions are not used in correct way they can cause unexpected results.
isset() and empty() are often viewed as functions that are opposite, however this is not always true. In this post I will explain the differences between these functions.
isset()
From PHP Manual:
isset — Determine if a variable is set and is not NULLIn other words, it returns true only when the variable is not null.
empty()
From PHP Manual:
From PHP Manual:
empty — Determine whether a variable is emptyIn other words, it will return true if the variable is an empty string, false, array(), NULL, “0?, 0, and an unset variable.
is_null()
From PHP Manual:
From PHP Manual:
is_null — Finds whether a variable is NULLIn other words, it returns true only when the variable is null. is_null() is opposite of isset(), except for one difference that isset() can be applied to unknown variables, but is_null() only to declared variables.
The table below is an easy reference for
what these functions will return for different values. The blank spaces
means the function returns bool(false).
Value of variable ($var) | isset($var) | empty($var) | is_null($var) |
---|---|---|---|
“” (an empty string) | bool(true) | bool(true) | |
” ” (space) | bool(true) | ||
FALSE | bool(true) | bool(true) | |
TRUE | bool(true) | ||
array() (an empty array) | bool(true) | bool(true) | |
NULL | bool(true) | bool(true) | |
“0″ (0 as a string) | bool(true) | bool(true) | |
0 (0 as an integer) | bool(true) | bool(true) | |
0.0 (0 as a float) | bool(true) | bool(true) | |
var $var; (a variable declared, but without a value) | bool(true) | bool(true) | |
NULL byte (“\ 0″) | bool(true) |
I have tested the above values in following environments:
- Wampserver 2.1, Apache 2.2.21, PHP 5.3.8
- Wampserver 2.1, Apache 2.2.17, PHP 5.3.5
- Wampserver 2.1, Apache 2.2.17, PHP 5.2.11
No comments:
Post a Comment