ID:               47486
 Updated by:       j...@php.net
 Reported By:      a at a dot com
-Status:           Open
+Status:           Verified
 Bug Type:         Scripting Engine problem
-Operating System: WinXP Pro
+Operating System: *
-PHP Version:      5.2.8
+PHP Version:      5.*, 6CVS (2009-02-24)
 New Comment:

Verified using CLI. Errors are displayed correctly when the
error_reporting() call is commented out from the main.php


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

[2009-02-24 02:35:09] a at a dot com

Description:
------------
(I'm using IIS, ISAPI)

When there is a parse error in an included file, NO error is displayed
even if display_errors and error_reporting are set correctly.

Reproduce code:
---------------
--main.php--
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL & E_NOTICE);
include("inc.php");
?>
------------

--inc.php--
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL & E_NOTICE);
$testvar = ;
?>
-----------

Expected result:
----------------
Parse error: parse error in [path here]\inc.php on line 4

Actual result:
--------------
None, there is no output at all, and no error gets logged.


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


-- 
Edit this bug report at http://bugs.php.net/?id=47486&edit=1

Reply via email to