3

我希望允许用户直接从 sftp 服务器下载文件,但在浏览器中。

我找到了读取文件和回显字符串的方法(使用 ssh2.sftp 或 phpseclib 的连接),但我需要下载而不是读取。

此外,我还看到了建议从 sftp 服务器下载到 Web 服务器的解决方案,然后从 Web 服务器使用 readfile() 到用户的本地磁盘。但这意味着两个文件传输,如果文件很大,我想这会很慢。

可以直接从sftp下载到用户盘吗?

为任何回应干杯!

4

1 回答 1

4

如果您将文件的直接链接添加到您的 html(即下载文本),则不需要任何 php 以允许用户直接从 SFTP 服务器下载。当然,如果您不想公开 ftp 服务器的凭据,这将不起作用。

如果您希望通过服务器从 SFTP 中提取文件,根据定义,您必须先将文件下载到服务器,然后再将其发送回用户浏览器。

为此,有很多很多的解决方案。最少的开销可能来自使用 phpseclib,如下所示

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

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

//adds the proper headers to tell browser to download rather than display
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary"); 
header("Content-disposition: attachment; filename=\"filename.remote\""); 

// outputs the contents of filename.remote to the screen
echo $sftp->get('filename.remote');
?>

不幸的是,如果文件比服务器/php 配置允许的内存大,那么这会导致问题。

如果你想更进一步,你可以试试

//adds the proper headers to tell browser to download rather than display
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary"); 
header("Content-disposition: attachment; filename=\"filename.remote\""); 

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "sftp://full_file_url.file"); #input
curl_setopt($curl, CURLOPT_PROTOCOLS, CURLPROTO_SFTP);
curl_setopt($curl, CURLOPT_USERPWD, "$_FTP[username]:$_FTP[password]");
curl_exec($curl);
curl_close($curl);

更多关于使用 cURL 的信息可以在PHP 手册文档中找到。使用 curl_exec() 而不将 CURLOPT_RETURNTRANSFER 选项设置为 true 会导致 curl 将输出(文件)直接发送到浏览器。

于 2013-04-29T17:11:34.653 回答