|   | 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] nikic@php.net
  [2016-02-12 17:53 UTC] nikic@php.net
 
-Status: Open
+Status: Closed
  [2016-04-18 09:29 UTC] bwoebi@php.net
  [2016-07-20 11:33 UTC] davey@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 00:00:01 2025 UTC | 
Description: ------------ Cycles involving generators will currently not be detected. E.g. this will leak: $gen = (function() use(&$gen) { yield; })(); $gen->rewind();