|
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-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Jan 01 14:00:01 2026 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