|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2006-01-15 02:24 UTC] tony2001@php.net
  [2006-01-15 02:33 UTC] sniper@php.net
  [2006-01-15 14:53 UTC] nlopess@php.net
  [2006-01-16 10:18 UTC] dmitry@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 01:00:01 2025 UTC | 
Description: ------------ the new realpath cache has a memleak when opening many files. Reproduce code: --------------- <?php foreach(range('a','z') as $f) { foreach(range('a','z') as $g) { $file = $f.$g; touch($file); file_get_contents($file); } } ?>