[PHP-DEV] Bug #10876 Updated: Main thread error if die placed in file which uncluded from switch-case operato From: anton <email protected>
Date: 05/15/01

ID: 10876
User Update by: anton <email protected>
Status: Open
Bug Type: Scripting Engine problem
Operating system: WINNT 4.0 SP6 + Apache 3.12, php
PHP Version: 4.0.5
Description: Main thread error if die placed in file which uncluded from switch-case operato

Some comments.
It happen when Output_buffering=on only, if output_buffering=off all is ok

Previous Comments:
---------------------------------------------------------------------------

[2001-05-15 07:48:00] anton <email protected>
I use WINNT 4.0+SP6+Apache 1.3.12+php 4.0.5 as apache module
I got Apache main thread error each time, if die() or exit() function placed in file which included from switch-case operator like this:

code example

tdie.php
<?
$a=1;
switch ($a) {
  case 1:
    include("testdie.php");
    break;
}
?>

testdie.php
<?
die("qq");
?>

---------------------------------------------------------------------------

Full Bug description available at: http://bugs.php.net/?id=10876

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>