|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2009-05-28 22:21 UTC] ryan dot brothers at gmail dot com
Description: ------------ When you pass to stream_get_line() a $length that is greater than the file size and a $ending that does not appear in the file, stream_get_line() returns bool(false) rather than the string that is in your file. In the below example, when I run stream_get_line() passing in a $length of 6 and a $ending of "\n", stream_get_line() returns false rather than the contents of the file. The manual states "Reading ends when length bytes have been read, when the string specified by ending is found (which is not included in the return value), or on EOF (whichever comes first).", so I believe the contents of my file should be returned since EOF is first to be reached. Reproduce code: --------------- <?php $fp = tmpfile(); fwrite($fp, '12345'); fseek($fp, 0); var_dump(stream_get_line($fp, 5)); fseek($fp, 0); var_dump(stream_get_line($fp, 6)); fseek($fp, 0); var_dump(stream_get_line($fp, 5, "\n")); fseek($fp, 0); var_dump(stream_get_line($fp, 6, "\n")); fclose($fp); Expected result: ---------------- string(5) "12345" string(5) "12345" string(5) "12345" string(5) "12345" Actual result: -------------- string(5) "12345" string(5) "12345" string(5) "12345" bool(false) PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 15:00:01 2025 UTC |
Verified. Actually this may be expected. <?php fseek($fp, 0); var_dump(stream_get_line($fp, 6, "\n")); ?> If stream_get_line() reads only 5 bytes here there is no way to tell if this is the end of the stream (without re-reading from the stream, which would block on sockets, etc). So it can't find the end of the line and return false. The next call to stream_get_line() will mark the stream as EOF, and stream_get_line will return the line: <?php $fp = tmpfile(); fwrite($fp, '12345'); fseek($fp, 0); while (!feof($fp)) { $line = stream_get_line($fp); if ($line === false) continue; var_dump($line); } ?> Result: string(5) "12345"