ID: 45645
Comment by: sergey89 at gmail dot com
Reported By: sergey89 at gmail dot com
Status: Open
Bug Type: PHP options/info functions
Operating System: Debian GNU/Linux 4.0r3
PHP Version: 5.2.6
New Comment:
After eval() script continues executing normally and I see expected
result on the page.
Previous Comments:
------------------------------------------------------------------------
[2008-07-28 13:58:10] sergey89 at gmail dot com
Description:
------------
I evaluate broken script with eval function. If display_errors is On i
get status 200 in http response, but if is Off i get status 500. It is
normal behaviour? error.log is empty.
Reproduce code:
---------------
<?php
ini_set('log_errors', 1);
ini_set('display_errors', 0);
eval('some)broken-code|');
Expected result:
----------------
HTTP/1.x 200 Ok
Actual result:
--------------
HTTP/1.x 500 Internal Server Error
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=45645&edit=1