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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
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 14:01:33 2025 UTC