|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-07-08 00:16 UTC] tony2001@php.net
[2005-07-08 00:30 UTC] james at academicsuperstore dot com
[2005-07-08 09:05 UTC] derick@php.net
[2005-07-08 16:35 UTC] james at academicsuperstore dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 18:00:02 2025 UTC |
Description: ------------ In the event at run time an uncaught exception is found then there is a fatal error. However, in the event that there are uncaught exceptions that are not executed such as in the reproduce code there is not even a notice. Reproduce code: --------------- <? error_reporting(2047 | E_STRICT); if (0) throw new Exception("foo"); ?> Expected result: ---------------- Fatal error: Uncaught exception 'Exception' with message 'foo' in /home/james/html/live_web/test.php:5 Stack trace: #0 Actual result: -------------- No messages at all.