int unset
unset() は指定した変数を破棄し、TRUE を返します。
例 1. unset() の例
1 2 unset( $foo ); 3 unset( $bar['quux'] ); 4
isset() 、empty() も参照下さい。