unset
Unset is a term used in computing to describe the removal of a binding from a namespace. It typically refers to a command or function that deletes a named variable, function, or other symbol so that it is no longer recognized by subsequent code.
In Unix-like shells such as bash, ksh, and zsh, unset is a builtin command used to remove
In PHP, unset() destroys the specified variable, at the current scope, or an element of an array.
Other languages and environments use similar ideas with different names, such as undef, delete, or Remove-Variable.