vrana Fri Aug 17 16:52:26 2007 UTC
Modified files: /phpdoc/en/language/oop5 decon.xml Log: Random destruction in shutdown (bug #38572) http://cvs.php.net/viewvc.cgi/phpdoc/en/language/oop5/decon.xml?r1=1.13&r2=1.14&diff_format=u Index: phpdoc/en/language/oop5/decon.xml diff -u phpdoc/en/language/oop5/decon.xml:1.13 phpdoc/en/language/oop5/decon.xml:1.14 --- phpdoc/en/language/oop5/decon.xml:1.13 Fri Aug 17 11:12:05 2007 +++ phpdoc/en/language/oop5/decon.xml Fri Aug 17 16:52:25 2007 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.13 $ --> +<!-- $Revision: 1.14 $ --> <sect1 xml:id="language.oop5.decon" xmlns="http://docbook.org/ns/docbook"> <title>Constructors and Destructors</title> @@ -68,7 +68,7 @@ PHP 5 introduces a destructor concept similar to that of other object-oriented languages, such as C++. The destructor method will be called as soon as all references to a particular object are removed or when - the object is explicitly destroyed. + the object is explicitly destroyed or in any order in shutdown sequence. </para> <example> <title>Destructor Example</title>