1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 01:48:26 +02:00
Files
archived-php-src/ext/standard/tests/general_functions/bug50732.phpt
T

13 lines
179 B
PHP

--TEST--
Bug #50732 (exec() adds single byte twice to $output array)
--FILE--
<?php
exec("echo x", $output);
var_dump($output);
?>
--EXPECT--
array(1) {
[0]=>
string(1) "x"
}