php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13832 fseek() offset problem with Win32 newlines
Submitted: 2001-10-25 21:42 UTC Modified: 2001-10-26 01:35 UTC
From: ryan at footboot dot net Assigned:
Status: Not a bug Package: Filesystem function related
PHP Version: 4.0.6 OS: Windows 2000 Professional
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: ryan at footboot dot net
New email:
PHP Version: OS:

 

 [2001-10-25 21:42 UTC] ryan at footboot dot net
Note: this still occurs in 4.0.6 (I think they're the same bug)

What I did: tried to read over a file backwards using fseek().

What should have happened: I should be able to create an array of the last few lines of a file, without reading the whole file.

What did happen: for every newline fseek()ed over fread() seemed to gain a byte.

I believe this could be a problem with the way fseek() handles new lines in Win32 (possibly not always). fread() seems to read Win32 newlines as one byte, while fseek() reads them as two.

In the following example, if the file has no newlines or the newlines are in Unix format, $buf is identical. If there are Win32 newlines, it isn't.

<example>
$fp = fopen('/temp/newline.txt', 'r');

fread($fp, 5);
$buf = fread($fp, 5);


fclose($fp);

$fp = fopen('/temp/newline.txt', 'r');

fseek($fp, 5);
$buf = fread($fp, 5);

fclose($fp);
</example>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-10-25 21:44 UTC] ryan at footboot dot net
This bug is probably related to bug number #6023 ("Problem with either fgets or ftell in ISAPI")
 [2001-10-26 01:35 UTC] ssb@php.net
Markus says it's bogus
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Mon Apr 29 11:01:32 2024 UTC