ID: 44818
User updated by: davemastergeneral at gmail dot com
Reported By: davemastergeneral at gmail dot com
-Status: No Feedback
+Status: Open
Bug Type: Streams related
Operating System: Linux csl1226 2.6.22-14-generic
PHP Version: 5.2CVS-2008-04-24 (snap)
New Comment:
Provided Feedback
Previous Comments:
------------------------------------------------------------------------
[2008-11-10 09:33:41] davemastergeneral at gmail dot com
<?php
echo phpversion(), PHP_EOL;
$fh = fopen('php://memory', 'r');
var_dump(fwrite($fh, 'dave'));
?>
Actual result:
5.2.7RC4-dev
int(4)
Expected result:
5.2.7RC4-dev
bool(false)
------------------------------------------------------------------------
[2008-11-07 01:00:00] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
------------------------------------------------------------------------
[2008-10-30 17:06:05] [EMAIL PROTECTED]
Please try using this CVS snapshot:
http://snaps.php.net/php5.2-latest.tar.gz
For Windows:
http://windows.php.net/snapshots/
------------------------------------------------------------------------
[2008-04-25 08:12:29] davemastergeneral at gmail dot com
Actually, expected result should be
bool(false)
For an error?
------------------------------------------------------------------------
[2008-04-24 12:45:24] davemastergeneral at gmail dot com
Description:
------------
I use php://memory to save resources when unit testing, I found it
possible to write to the stream despite opening it read only. Not sure
if this is the desired behaviour.
Reproduce code:
---------------
<?php
/**
* php://memory bug
*/
$fh = fopen('php://memory', 'r');
var_dump(fwrite($fh, 'dave'));
?>
Expected result:
----------------
int(0)
Actual result:
--------------
int(4)
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=44818&edit=1