On Wed, 6 Apr 2005 09:05:35 -0400
Wez Furlong <[EMAIL PROTECTED]> wrote:

> What problem does this fix?
> EOF can be a temporary condition for network streams, depending on
> non-blocking status, and the read call is used to re-enable it.  (yay
> for backward compatibility).

stream_get_line() gives a lot of garbage trying to read after EOF and segfaults 
with this code:
<?

$fp = fopen(dirname(__FILE__)."/test.txt", 'r');

while ($data = stream_get_line($fp, 100, "|")) {
    var_dump($data);
}

?>

test.txt contents:
-------
line1 | some | another

-------

-- 
Wbr, 
Antony Dovgal aka tony2001
[EMAIL PROTECTED]

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to