PHPのis_nullとissetとemptyの違いです。
1 |
$text = ""; |
空文字
is_null:FALSE
isset:TRUE
empty:TRUE
1 |
$text = 0; |
数字のゼロ
is_null:FALSE
isset:TRUE
empty:TRUE
1 |
$text = null; |
NULL
is_null:TRUE
isset:FALSE
empty:TRUE
1 |
$text = array(); |
空の配列
is_null:FALSE
isset:TRUE
empty:TRUE
1 |
$text; |
未初期化
is_null:TRUE
isset:FALSE
empty:TRUE