|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-02-12 17:53 UTC] [email protected]
[2016-02-12 17:53 UTC] [email protected]
-Status: Open
+Status: Closed
[2016-04-18 09:29 UTC] [email protected]
[2016-07-20 11:33 UTC] [email protected]
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Tue Mar 17 17:00:01 2026 UTC |
Description: ------------ Cycles involving generators will currently not be detected. E.g. this will leak: $gen = (function() use(&$gen) { yield; })(); $gen->rewind();