0

我正在使用 PHP_SSH2 1.1.2 版(和 phpseclib 1.0.11 版),在尝试上传文件时,出现此错误:

PHP 致命错误:未捕获的错误:调用未定义的方法 Net_SSH2::put()

这是我正在使用的代码:

require 'Net/SSH2.php';
define('NET_SSH2_LOGGING', NET_SSH2_LOG_COMPLEX);

$connection = new Net_SSH2($ftp_server);
if(!$connection->login($ftp_user_name, $ftp_user_pass)){ 
    die("FTP connection has failed!\nAttempted to connect to $ftp_server for user $ftp_user_name"); 
}

$source_file = 'filename.txt';
$destination_file = $source_file;
$upload = $connection->put($destination_file, $source_file, NET_SFTP_LOCAL_FILE);

if (!$upload) die("FTP upload of $source_file has failed!");

我可以正常连接到服务器(可以正常login()工作),但put()不是吗?

4

1 回答 1

0

Net_SSH2 没有 put 方法。您需要使用 Net_SFTP 在 SSH 服务器上执行 SFTP 操作。

http://phpseclib.sourceforge.net/sftp/examples.html#put

于 2018-06-22T03:20:22.157 回答