我无法在 PHP 中显示 SSH 流的输出。这是我的代码:
$output = ssh2_exec($sshCon, $sshCommand);
stream_set_blocking($output, true);
echo stream_get_contents($output);
输出为空白。该命令肯定正在运行。我也尝试了这里给出的解决方案: Empty PHP SSH2 stream contents, even with stream_set_blocking?
输出应该是进程 ID,只是为了让您知道。
谢谢!