ID: 50732
Updated by: [email protected]
Reported By: scope at planetavent dot de
-Status: Open
+Status: Assigned
Bug Type: Program Execution
-Operating System: Linux, Windows
+Operating System: *
-PHP Version: 5.3.1
+PHP Version: 5.*, 6
-Assigned To:
+Assigned To: iliaa
New Comment:
Ilia, fix the fix please? (all branches of course)
Previous Comments:
------------------------------------------------------------------------
[2010-01-12 22:00:28] scope at planetavent dot de
Of course, this applies as well to output that just ends with a newline
followed by a single byte.
Example:
#!/bin/sh
echo "Hello\nWorl\nd"
results in:
Array
(
[0] => Hello
[1] => Worl
[2] => d
[3] => d
)
------------------------------------------------------------------------
[2010-01-12 19:29:26] scope at planetavent dot de
Description:
------------
If exec is used to start a command that outputs only a single byte, and
if the $output array is used, the byte is added twice to the output
array.
Tested with php 5.3.1 in cli mode on Windows 2003 Server and Ubuntu
9.10 Server.
This behaviour was introduced with bugfix to #49847:
>From exec.c:125
while (php_stream_get_line(stream, b, EXEC_INPUT_BUF, &bufl)) {
...
if (b[bufl - 1] != '\n' && !php_stream_eof(stream)) {
...
continue;
If only a single byte is read, php_stream_eof(stream) returns true,
thus no second loop will take place.
After line 149:
while (l-- && isspace(((unsigned char *)buf)[l]));
buflen is 1 and l is 0, therefor
line 160:
if ((type == 2 && bufl && !l) || type != 2) {
yields true and the buffer is added to the output array, again.
Reproduce code:
---------------
<?php
$command = "echo x";
exec( $command, $output );
print_r( $output );
Expected result:
----------------
Array
(
[0] => x
)
Actual result:
--------------
Array
(
[0] => x
[1] => x
)
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=50732&edit=1