|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-07-27 08:48 UTC] stas@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 05 08:00:02 2025 UTC |
Description: ------------ When a destructor runs and you call exit() from within it, this will break the next executed PHP script with a "Cannot redeclare..." message. The bug appears when the script is run on a web server, not from the command line. I think that the HTTP request must be 1.1 not 1.0, because for me it appears only when HTTP request has keepalive connection enabled. To reproduce the bug, place the following script on a web server and run it from the web browser (in my case it was Internet Explorer 6.0) Reproduce code: --------------- <? class someclass { public function __destruct () { exit ("Here we terminate"); } } header ("Location: http://" . $_SERVER ["SERVER_NAME"] . $_SERVER ["SCRIPT_NAME"]); $obj = new someclass; function evil () { } ?> Expected result: ---------------- No output is expected. The HTTP request should loop in redirection calls. Actual result: -------------- Fatal error: Cannot redeclare evil() (previously declared in :15) in /usr/local/apache/site/htdocs/bug.php on line 15