| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2006-06-19 10:51 UTC] rr at ronrosen dot com
  [2006-06-19 10:56 UTC] mike@php.net
  [2006-06-19 10:56 UTC] mike@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 15:00:01 2025 UTC | 
Description: ------------ When a large # of files are opend, written and closed, memory is never released. I tested it on windows and linux. Samve Problem. Strange thing, when the files are deleted on the linux version, the memory is released. Reproduce code: --------------- for($i=0;$i<10000;$i++) { $h = fopen('/home/testdir/testfile'.$i.'.html','w'); fwrite($h,'AAAA'); fclose($h); }