1

我无法在 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,只是为了让您知道。

谢谢!

4

1 回答 1

1

试试phpseclib,一个纯 PHP SSH 实现

<?php
include('Net/SSH2.php');

$ssh = new Net_SSH2('www.domain.tld');
if (!$ssh->login('username', 'password')) {
    exit('Login Failed');
}

echo $ssh->exec($sshCommand);
?>
于 2012-06-17T20:41:41.633 回答