Changed '?' to '�' for binary output. Issue #116.

This commit is contained in:
Dmitry Khomutov 2017-09-09 16:03:50 +07:00
parent a4cbd1b7ec
commit 883ebf1a1a

View file

@ -102,7 +102,7 @@ class CommandExecutor implements CommandExecutorInterface
$status = proc_close($process);
}
mb_substitute_character(ord('?'));
mb_substitute_character(65533);
$this->lastOutput = mb_convert_encoding($this->lastOutput, 'utf8', 'utf8');
$this->lastOutput = array_filter(explode(PHP_EOL, $this->lastOutput));