If I have :
class MyClass{
/ functions & what not .. /
}
$test = new myClass; how do I get rid of (destroy) $test ?
ok Solved it $test = null; #destroys the class.
Or destroy the entire variable: [man]unset/man.
Don't forget to mark this thread resolved.