|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-05-15 07:39 UTC] dmitry@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 05 09:00:01 2025 UTC |
Description: ------------ Currently, things like that are allowed: try { ... plop: } catch(Exception $e) { goto plop; } try { } catch(Exception1 $e) { goto plop; } catch(Exception2 $e) { plop: } GOTOs shouldn't be allowed in those cases.