0
我無法在PHP中顯示SSH流的輸出。這是我的代碼:PHP - ssh2讀取輸出流
$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,只是爲了讓你知道。
謝謝!