|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-11-20 08:38 UTC] laruence@php.net
[2015-11-20 08:38 UTC] laruence@php.net
-Status: Open
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 15:00:01 2025 UTC |
Description: ------------ try{ } finally{} can create infinite chains of exceptions Test script: --------------- <?php $e = new Exception("Bar"); try { throw new Exception("Foo", 0, $e); } finally { throw $e; } Expected result: ---------------- exit normally Actual result: -------------- script hangs