php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #53003 no error reporting
Submitted: 2010-10-06 18:19 UTC Modified: 2010-10-07 04:06 UTC
From: lourspolair at banquiz dot net Assigned:
Status: Not a bug Package: Scripting Engine problem
PHP Version: 5.2.14 OS: Seven 64bit
Private report: No CVE-ID: None
View Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
If you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: lourspolair at banquiz dot net
New email:
PHP Version: OS:

 

 [2010-10-06 18:19 UTC] lourspolair at banquiz dot net
Description:
------------
when your fingers do what they wants and you accidentaly type !===

they 're is no error reported... just a blank screen



Test script:
---------------
<?php
// force display error...
error_reporting(E_ALL);
ini_set('display_errors', 'on'); 

// init a var
$test = 'test';

// make a test
if($test !=== NULL)
{
	echo 'ok';
}

die('STOP');
?>

Expected result:
----------------
okSTOP

Actual result:
--------------
nothing even, an error reports

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2010-10-07 04:06 UTC] aharvey@php.net
-Status: Open +Status: Bogus
 [2010-10-07 04:06 UTC] aharvey@php.net
Not a bug: the parse error occurs during compilation, whereas the
error_reporting() and ini_set() calls don't take effect until runtime.
To see those errors, change the error_reporting and display_errors
settings in your php.ini.

Closing.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue Jul 15 09:01:31 2025 UTC