|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-10-07 04:06 UTC] aharvey@php.net
-Status: Open
+Status: Bogus
[2010-10-07 04:06 UTC] aharvey@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 01:00:01 2025 UTC |
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