Which method introduced in PHP 5, is invoked just before an object is a garbage collected?

Which method introduced in PHP 5, is invoked just before an object is a garbage collected? Correct Answer __destruct()

You can use this method to perform any final cleaning up that might be necessary. Imagine, for example, a class that saves itself to a database when so ordered. I could use the __destruct() method to ensure that an instance saves its data when it is deleted.

Related Questions

Which method introduced in PHP 5, is invoked just before an object is garbage collected?