ID:               44818
 User updated by:  davemastergeneral at gmail dot com
 Reported By:      davemastergeneral at gmail dot com
 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:

Actually, expected result should be

bool(false)

For an error?


Previous Comments:
------------------------------------------------------------------------

[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

Reply via email to