|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2004-10-31 23:53 UTC] support at malyweb dot cz
Description: ------------ the code below causes that window critical error dialog appear and no result is shown I tried it on 5.0.2 - it did not work so I downloaded this latest version (5.0.3-dev) and it is still not working. (I read this one also: http://bugs.php.net/bug.php?id=30230 but actually do not understand it - the code is not working also) btw: this works fine function exceptionHandler($exception){ echo('Uncaught exception: '.$exception->getMessage()); } set_exception_handler('exceptionHandler'); throw new Exception('oh no ... ;)');exit; Reproduce code: --------------- <?php class core_exception { public static function exceptionHandler($exception){ echo('Uncaught exception: '.$exception->getMessage()); } } $_EXCEPTION = new core_exception(); set_exception_handler(array($_EXCEPTION,'exceptionHandler')); throw new Exception('oh no ... ;)');exit; ?> Expected result: ---------------- Uncaught exception: oh no ... ;) Actual result: -------------- via browser: no result + critical error of apache via cmdline: no result + critical error of CLI or CGI/FastCGI via zde debugger: shows the expected result (build 1482) PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 01:00:01 2025 UTC |
Cannot reproduce (CLI, FreeBSD): $ cat test.php <?php class core_exception { public function exceptionHandler($exception){ echo 'Uncaught exception: ', $exception->getMessage(), "\n"; } } set_exception_handler(array(new core_exception(), 'exceptionHandler')); throw new Exception('oh no ... ;)'); ?> $ php5 test.php Uncaught exception: oh no ... ;)the code does not work: win XP, php 5.0.2: irregularly Fatal error: Uncaught exception 'Exception' with message 'oh no ... ;)' in C:\...\html\test.php:11 Stack trace: #0 {main} thrown in C:\...\html\test.php on line 11 OR Uncaught exception: oh no ... ;) win2000, php5.0.1 (maybe irrelevant): only the first one both is apache 2.0.52