|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-05-16 03:26 UTC] laruence@php.net
[2016-05-16 09:01 UTC] nikic@php.net
[2016-07-13 12:09 UTC] dmitry@php.net
[2016-07-13 12:09 UTC] dmitry@php.net
-Status: Open
+Status: Closed
[2016-07-20 11:29 UTC] davey@php.net
[2016-10-17 10:11 UTC] bwoebi@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ Should return 1, the unmodified value, but returns 2. Test script: --------------- <?php function test() { $a = 1; try { return $a; } finally { $a = 2; } } var_dump(test());