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: [email protected] 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: [email protected]
New email:
PHP Version: OS:

 

 [2009-05-17 14:48 UTC] [email protected]
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] [email protected]
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-2025 The PHP Group
All rights reserved.
Last updated: Thu Jul 17 02:01:33 2025 UTC