Edit report at https://bugs.php.net/bug.php?id=55144&edit=1
ID: 55144 Updated by: ka...@php.net Reported by: singhkumardinesh at gmail dot com Summary: Program not generating error giving blank pages -Status: Open +Status: Feedback Type: Bug Package: *General Issues Operating System: Ububtu 10.4 PHP Version: 5.3.6 Block user comment: N Private report: N New Comment: Did you check your error verbosity in error_reporting and display_errors being correctly defined for the script? Previous Comments: ------------------------------------------------------------------------ [2011-07-06 06:08:27] singhkumardinesh at gmail dot com Description: ------------ When i m running below code (on php 5.3.2) that time it not giving me any error but it should generate error. that program have 2-3 error but not generating it giving me error on lower version of php 5.3 like 5.2 etc. Test script: --------------- final class A{ function foo($a){ if (isset($this)) { echo "If"; } else { echo "Else"; } } } class b extends A {} $a = new A(); $a->foo(); Expected result: ---------------- Should give fatal error for class a should not extand and warning argument missing in function foo Actual result: -------------- blank pages ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=55144&edit=1