我正在使用phpseclib连接到sftp服务器。
这是我的代码
$this->sftp = new Net_SFTP($host, $port);
$login = $this->sftp->login($user, $password);
if (!$login) {
throw new SGExceptionForbidden('Could not connect to the SFTP server: '.$host);
}
但它表示找不到与客户端加密算法兼容的服务器
我该怎么做才能解决这个问题