|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-01-28 11:36 UTC] cmb@php.net
-Package: Documentation problem
+Package: Streams related
[2020-09-08 11:14 UTC] cmb@php.net
-Assigned To:
+Assigned To: cmb
[2020-09-08 11:25 UTC] cmb@php.net
-Status: Assigned
+Status: Closed
[2020-09-08 11:25 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 00:00:02 2025 UTC |
Description: ------------ It should be documented that, in some circumstances, the "stream_seek" method isn't called in response to fseek. As example: // fseek will be called in response to fseek $fp = fopen('mfx://test', 'w'); fwrite($fp, '12345678'); fseek($fp, 1, SEEK_CUR); fclose($fp); // fseek will not be called in response to fseek $fp = fopen('mfx://test', 'w'); fwrite($fp, '12345678'); fread($fp, 2); fseek($fp, 1, SEEK_CUR); fclose($fp); This is pointed out by Gustavo on the internals list: http://news.php.net/php.internals/54999