(unknown)
int unset (mixed var)
int unset
unset() destroys the specified variable and returns true.
Example 1. Unset() example
unset ($foo); unset ($bar['quux']);
See also isset() and empty().