Core Function Unset
From Sputnik Wiki
Unset( $variable )
Contents |
Description
Delete a variable
Parameters
$variable
A variable to delete.
Return Value
None
Remarks
This can be used to delete DLLStructs, GUI objects and Classes.
Example
unset( $a ); // Delete single variable unset( $a[500] ); // Delete variable from array unset( $a["test"] ); // Delete variable from hash