: Bug #36981 :: SplFileObject->fgets()

 [2006-04-05 10:00 UTC] x dot philbert at pixandlog dot com

Description:
------------
Hello.

I can't use a maximum lenght with fgets of SplFileObject. After one test, results are not correct with parameter maximum length.
Here is my file :
[www]$ cat tmpfile.txt
abcdefgh
pqrstuvwxyz

[www]$


Reproduce code:
---------------
<?php
$fi1 = new SplFileObject('tmptest/tmpfile.txt');
$fi1->setMaxLineLen(2);
echo 'MaxLineLenght = '.$fi1->getMaxLineLen().'<br />';
echo 'fgets = ['.$fi1->fgets().']<br />';
echo 'fgets = ['.$fi1->fgets().']<br />';
echo 'fgets = ['.$fi1->fgets().']<br />';
?>


Expected result:
----------------
MaxLineLenght = 2
fgets = [a]
fgets = [b]
fgets = [c]


Actual result:
--------------
MaxLineLenght = 2
fgets = [abcdefgh ]
fgets = [pqrstuvwxyz ]
fgets = []