php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #48309 stream_copy_to_stream() and fpasstru() do not update stream position
Submitted: 2009-05-17 14:48 UTC Modified: 2009-05-17 14:59 UTC
From: lbarnaud@php.net Assigned: lbarnaud (profile)
Status: Closed Package: Streams related
PHP Version: 5 OS:
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: lbarnaud@php.net
New email:
PHP Version: OS:

 

 [2009-05-17 14:48 UTC] lbarnaud@php.net
Description:
------------
stream_copy_to_stream() and fpasstru() do not update stream position of source stream, when source stream is a plain file.



Reproduce code:
---------------
<?php

$fd = tmpfile();
fwrite($fd, b"test");
fseek($fd, 0, SEEK_SET);

stream_copy_to_stream($fd, STDOUT, 2);

echo "\n";
var_dump(stream_get_contents($fd));

?>

Expected result:
----------------
te
string(2) "st"

Actual result:
--------------
te
string(4) "test"

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-05-17 14:59 UTC] lbarnaud@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Oct 27 16:01:27 2024 UTC