|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2015-09-21 16:52 UTC] bwoebi@php.net
 
-Status:      Open
+Status:      Assigned
-Assigned To:
+Assigned To: bwoebi
  [2015-09-21 16:52 UTC] bwoebi@php.net
  [2015-09-23 15:53 UTC] bwoebi@php.net
  [2015-09-23 15:53 UTC] bwoebi@php.net
 
-Status: Assigned
+Status: Closed
  [2015-09-23 16:30 UTC] bwoebi@php.net
  [2015-09-29 13:10 UTC] ab@php.net
  [2016-07-20 11:36 UTC] davey@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 07:00:01 2025 UTC | 
Description: ------------ phpdbg SAPI ignores set_exception_handler even though it is running in "run and quit mode (-rr)". Test script: --------------- phpdbg -qrr test.php; echo $? <?php set_exception_handler(function () { echo "EX\n"; }); throw new Exception(); Expected result: ---------------- EX 0 Actual result: -------------- [Uncaught Exception in ...] ... prompt>