ID: 41815
Updated by: [EMAIL PROTECTED]
Reported By: mpb dot mail at gmail dot com
-Status: Open
+Status: Assigned
Bug Type: Streams related
Operating System: Linux 2.6
PHP Version: 5.2.3
-Assigned To:
+Assigned To: pollita
Previous Comments:
------------------------------------------------------------------------
[2007-06-26 18:56:51] mpb dot mail at gmail dot com
Description:
------------
If you fread() to the end of a file, and then additional bytes are
appended to the file, future calls to fread() never return the appended
bytes.
This problem may have started with PHP 5.2.0.
This problem still exists in PHP 5.2.3.
PHP 4.4.7 does NOT suffer from this problem.
Reproduce code:
---------------
<?php
$f = fopen ('test', 'w');
$g = fopen ('test', 'r');
fwrite ($f, "This is line 1.\n");
fflush ($f);
print fread ($g, 100);
fwrite ($f, "This is line 2.\n");
fflush ($f);
print fread ($g, 100);
?>
Expected result:
----------------
This is line 1.
This is line 2.
Actual result:
--------------
This is line 1.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=41815&edit=1