Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #21402, comment 24


Ignore:
Timestamp:
01/22/2020 12:57:34 PM (6 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21402, comment 24

    v1 v2  
    109109
    110110Relevant PHP issues:
    111 * https://bugs.php.net/bug.php?id=36759
    112 * https://bugs.php.net/bug.php?id=39381
    113 * https://bugs.php.net/bug.php?id=39546
    114 * https://bugs.php.net/bug.php?id=40104
    115 * https://bugs.php.net/bug.php?id=42132
     111* [https://bugs.php.net/bug.php?id=36759 #36759 Objects destructors are invoked in wrong order when script is finished]
     112* [https://bugs.php.net/bug.php?id=39381 #39381 __destruct() bug]
     113* [https://bugs.php.net/bug.php?id=39546 #39546 Objects destroyed before output buffering]
     114* [https://bugs.php.net/bug.php?id=40104 #40104 Workflow Issue: Object destruction vs Output buffer]
     115* [https://bugs.php.net/bug.php?id=42132 #42132 suggest a fix for global object got destructed in output buffer handler]
     116
     117Relevant Stack Overflow threads:
     118* [https://stackoverflow.com/questions/8523433/what-determines-when-a-class-object-is-destroyed-in-php/8565887#8565887 What determines when a class object is destroyed in PHP?]
     119* [https://stackoverflow.com/questions/11332122/class-object-not-working-inside-ob-start-callback/11332266#11332266 Class object not working inside ob_start() callback]
     120* [https://stackoverflow.com/questions/14096588/in-which-order-are-objects-destructed-in-php/14101767#14101767 In which order are objects destructed in PHP?]
    116121
    117122The discussion on #3354, starting from comment:32:ticket:3354, appears to corroborate these results.