php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #36914 SplFileObject::fwrite() bug
Submitted: 2006-03-29 16:20 UTC Modified: 2006-03-29 17:25 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: c dot affolter at stepping-stone dot ch Assigned:
Status: Not a bug Package: SPL related
PHP Version: 5CVS-2006-03-29 (CVS) OS: Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: c dot affolter at stepping-stone dot ch
New email:
PHP Version: OS:

 

 [2006-03-29 16:20 UTC] c dot affolter at stepping-stone dot ch
Description:
------------
The bug #36359 doesn't seems to be fixed in the latest CVS version:
http://cvs.php.net/viewcvs.cgi/php-src/ext/spl/internal/splfileobject.inc?view=markup&rev=1.3&pathrev=HEAD

The string to be written ($str) doesn't gets passed to the fwrite() function.

The method SplFileObject::fwrite() has to be corrected:
<?php
...
    function fwrite($str, $length = NULL)

    {
        // wrong:
        //return fwrite($this->fp, $length);

        // correct:
        return fwrite($this->fp, $str, $length);

    }
...
?>


Thanks!


Reproduce code:
---------------
<?php
splFileObject = new FileObject('test.txt', 'w');
splFileObject->fwrite('test');
?>

Expected result:
----------------
cat test.txt
test

Actual result:
--------------
cat test.txt
[empty]

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-03-29 17:25 UTC] tony2001@php.net
Your code is wrong, but this code works perfectly fine:
<?php
$splFileObject = new SplFileObject('test.txt', 'w');
$splFileObject->fwrite('test');
?>
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 01:01:30 2024 UTC