|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2003-04-14 20:35 UTC] iliaa@php.net
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 05:00:02 2025 UTC | 
The set_file_buffer() and stream_set_write_buffer (in 4.3.2 RC's and CVS) crashes Apache 1.3.27. This code, when executed in 4.3.1 and prior, does not crash Apache. <? $file = '/web/somefile'; $csv_buffer_size = 9192; echo 'file exists ? '.file_exists($file); echo '<br />'; $fp = fopen($file,'w') or die('Unable to access file: '.$file); set_file_buffer($fp,$csv_buffer_size); ?>