|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-04-02 10:42 UTC] requinix@php.net
-Status: Open
+Status: Feedback
[2017-04-02 10:42 UTC] requinix@php.net
[2017-04-16 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 23 03:00:02 2025 UTC |
Description: ------------ hello i've created an interface with an abstract method by mystake (and a lot of copy/paste) PHP dies silently whithout triggering any kind of error/warning whereas i have error_reporting=E_ALL in my php.ini it would be helpfull to give the developer some kind of hint why the language refuse to run. display_errors=On display_startup_errors=On Test script: --------------- interface test { abstract function foobar(); } echo 'toto'; Expected result: ---------------- E_COMPILE_ERROR should be raised. Actual result: -------------- script does not run.