News Feed
Jobs Feed
Sections




News Archive
Stoimen Popov's Blog:
PHP Don't Call the Destructor Explicitly
November 16, 2011 @ 11:56:43

In this new post to his blog Stoimen Popov talks about calling the "destructor" method of an object and why doing it directly could lead to some issues - like not actually destroying the object before the script ends.

At the end of the script the interpreter frees the memory. Actually every object has a built-in destructor, just like it has built-in constructor. So even we don't define it explicitly, the object has its destructor. Usually this destructor is executed at the end of the script, or whenever the object isn't needed anymore. This can happen, for instance, at the end of a function body. Now if we call the destructor explicitly, which as I said I've seen many times, here's what happen. As you can see calling the destructor explicitly doesn't destroy the object. So the question is...how to destroy an object before the script stops?

He points out that one way to "destroy" an object is to null it out and remove the structure from memory. This is tricky, though, because a clone of the object will still exist in memory, just not the original.

0 comments voice your opinion now!
destructor call directly null clone object


blog comments powered by Disqus

Similar Posts

Paul Jones' Blog: Memory Leaks With Objects in PHP 5

Eran Galperin's Blog: Common misconceptions in web application development

DevShed: Working with Prepared Queries with PDO Objects in PHP 5

Developer Tutorials Blog: 5 Ways to be a Better PHP Developer

Joshua Thompson's Blog: Return to Prototype Based Programming in PHP


Community Events









Don't see your event here?
Let us know!


code introduction conference interview testing zendframework2 example language object functional event development release framework composer tool api podcast opinion community

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework