我正在尝试在我的 PHP 应用程序上重现以下命令以通过 sftp 上传文件:
curl -T /var/repo/file -u user:password sftp://server.com/folder/
上面的命令工作得很好(不过,我必须在我的 ubuntu 机器上重新编译 libcurl 才能使其工作)。然而,当我尝试使用 PHP 的 curl 库时,事情对我来说并不顺利。
我正在使用的代码如下:
$ch = curl_init();
$localfile = 'file';
$fp = fopen($localfile, 'r');
curl_setopt($ch, CURLOPT_URL, 'sftp://server.com/folder/');
curl_setopt($ch, CURLOPT_UPLOAD, 1);
curl_setopt($ch, CURLOPT_USERPWD, 'user:password');
curl_setopt($ch, CURLOPT_PROTOCOLS, CURLPROTO_SFTP);
curl_setopt($ch, CURLOPT_INFILE, $fp);
curl_setopt($ch, CURLOPT_INFILESIZE, filesize($localfile));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_exec ($ch);
$error_no = curl_errno($ch);
curl_close ($ch);
if ($error_no == 0) {
$error = 'File uploaded succesfully.';
} else {
$error = 'File upload error.';
}
echo $error.' '.$error_no;
这会返回错误 79:CURLE_SSH (79),我不知道如何修复。你遇到过这个问题吗?你怎么修好它的?有任何想法吗?
谢谢!