ID: 36981
Updated by: [EMAIL PROTECTED]
Reported By: x dot philbert at pixandlog dot com
-Status: Open
+Status: Assigned
Bug Type: SPL related
Operating System: Gentoo Linux
PHP Version: 5.1.2
-Assigned To:
+Assigned To: tony2001
Previous Comments:
------------------------------------------------------------------------
[2006-04-05 10:00:32] 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 = []
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=36981&edit=1