last updated December 2021

$var isset($var) empty($var) is_null($var)
”” (empty string) true(bool) true(bool)
” ” (space) true(bool)
FALSE true(bool) true(bool)
TRUE true(bool)
array() (empty array) true(bool) true(bool)
null true(bool) true(bool)
“0” (string) true(bool) true(bool)
0 (int) true(bool) true(bool)
0.0 (float) true(bool) true(bool)

Compatibility: PHP ≥ 4 (is_null, PHP ≥ 4.04)



hope its useful! ✌ Sami