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

link|improve this question

68% accept rate
feedback

3 Answers

up vote 6 down vote accepted

If the script finishes, the memory is released. You're ready as is :)

link|improve this answer
great - thanks! and what about if a script will will be terminated by an error? will all variables (database ..) be destroyed aswell? – Fuxi Apr 8 '11 at 11:34
Well, the database connection might need a 'close', but in most situations you only need to worry about this when you need more memory DURING exection. So if you load X amount of data in an object, and then you want to do it again. But basically: don't worry, code happy :) – Nanne Apr 8 '11 at 11:46
feedback

No, you do not need to destroy any variable yourself (and an object is a variable) : as soon as your PHP script reaches its end, its variables will be freed, and the correspondig memory released.

Actually, a variable gets destroyed automatically when the end of its variable's scope is reached -- and, when you reach end of script, it's the end of the scope introduced by that script's execution.


(Answering a comment to another answer)
Of course, when your script is ended because of an error, the same thing happens : the variables are freed, and the memory released.

link|improve this answer
what about open database connections? do i need to close them at all? – Fuxi Apr 8 '11 at 11:37
Unless you're using persistent connections, connections are automatically terminated when the PHP script ends. – Pascal MARTIN Apr 8 '11 at 11:38
feedback

As @Nanne sayd, if the script finished the memory is released, however in some circumstances you might whant to unset($web); .

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.