我一直在尝试ssh2_exec
运行并从远程主机返回响应,但无法找出正确的方法来执行此操作。我根据其他人的推荐一起使用了这个函数,但是这个函数一旦到达stream_get_contents($errorStream);
.
我正在运行的命令ls -l
应该很快执行。
public function exec($command)
{
$stream = ssh2_exec($this->ssh, $command);
if (! $stream) {
throw new exception('Could not open shell exec stream');
}
$errorStream = ssh2_fetch_stream($stream, SSH2_STREAM_STDERR);
stream_set_blocking($errorStream, true);
stream_set_blocking($stream, true);
$err = stream_get_contents($errorStream);
$response = stream_get_contents($stream);
@fclose($errorStream);
@fclose($stream);
if ($err) {
throw new exception($err);
}
return $response;
}