i wrote a little class for storing global variables/functions. my question is - is it necessary to destroy the class object after the script has finished? or will php destroy that object itself?
here's my code:
$web=new c_web("myWeb");
$web->loadTemplate("/!framework/admin/template.htm");
$web->doStuff();
// script has finished - destroying required here?
in case i need to destroy it - how? thx in advance