2017-05-18 Thu
■ PHP isset / is_null / empty / == null / === null [php]
良く混乱するのでまとめメモ
isset()
未定義, null 以外で true
!is_null() と同じ
is_null
未定義, null で true
!isset() と同じ
empty
未定義, null, ''[空文字], 0, '0', false, array()[空配列] で true
== null, === null は後で!!
参照
http://www.flatflag.nir87.com/null-389
最終更新時間: 2024-11-21 17:03