Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

DevShed:
Executing Destructors Manually in PHP 5
Feb 13, 2008 @ 17:27:00

Finishing off their series on destructors in PHP5 applications today, DevShed has posted this new tutorial showing how to manually run the destructors of your class (in case there's ever a need).

In this final tutorial of the series I'm going to show you how to manually trigger a destructor, and in addition you'll learn how to emulate the behavior of this magic method when using PHP 4.

They not only talk about how to call the destructor manually but they also show how to call multiple destructors at the same time to destroy lots of objects at once. And, as promised, they include a method for being able to use a destructor-like bit of functionality in a PHP4 app as well.

tagged: php5 destructor execute manual php4 emulate multiple

Link:


Trending Topics: