If I create an instance of a class like so:
$MyNewInstance = New FooMegaClass();
can I destroy it like so:
unset ( $MyNewInstance );
Also, would that call the classes __destructor() method, or whatever it's called?
Testing this proved a little tricky.
Thanks 😃