ID:               22497
 User updated by:  henrik dot gebauer at web dot de
-Summary:          php writes on wrong position in file after new lines
 Reported By:      henrik dot gebauer at web dot de
 Status:           Open
 Bug Type:         Filesystem function related
 Operating System: Windows 2000
 PHP Version:      4CVS-2003-03-01 (stable)
 New Comment:

Note: The new line chars can be everywhere in the first string.


Previous Comments:
------------------------------------------------------------------------

[2003-03-01 16:06:20] henrik dot gebauer at web dot de

New line chars seem not to count any longer.
The following example writes 6 new lines in a file, then 20 chars.
'test' should be placed after the last '9' but it is placed after the
last '3' (6 characters earlier as there are 6 new line chars)

I didn't have the problem with earlier versions of PHP.

<?php
$fp = fopen('file.txt', 'w');
fwrite($fp,"\n\n\n\n\n\n01234567890123456789");
fwrite($fp, 'test');
fclose($fp);
readfile('file.txt');
?>

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=22497&edit=1

Reply via email to