Edit report at http://bugs.php.net/bug.php?id=52911&edit=1
ID: 52911
User updated by: mz dot evgeny at gmail dot com
Reported by: mz dot evgeny at gmail dot com
-Summary: fwrite doesn't write long strings to a stream
+Summary: fwrite doesn't write long strings to a php stream
Status: Open
Type: Bug
-Package: Streams related
+Package: *General Issues
Operating System: Windows
PHP Version: 5.3.3
Block user comment: N
New Comment:
It will be more correct to say that it does write the whole string, but
php.exe doesn't get the complete string for some reason.
Previous Comments:
------------------------------------------------------------------------
[2010-09-23 13:18:34] mz dot evgeny at gmail dot com
Description:
------------
fwrite doesn't write long strings to a stream.
When i try to open a php process and write a long-script to it, i get a
parse error.
Test script:
---------------
$descriptorSpec = array(
0 => array('pipe', 'r'),
1 => array('pipe', 'w'),
2 => array('pipe', 'w')
);
$process = proc_open("php.exe", $descriptorSpec, $pipes);
var_dump(fwrite($pipes[0], "<?php '" . str_repeat("1", 8500) . "';
?>"));
fclose($pipes[0]);
$stdout = stream_get_contents($pipes[1]);
fclose($pipes[1]);
proc_close($process);
print_r($stdout);
Expected result:
----------------
int 8513
No error.
Actual result:
--------------
int 8513
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE in - on
line 1
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/bug.php?id=52911&edit=1