如何使用 PHP 进行 SFTP?
Posted
技术标签:
【中文标题】如何使用 PHP 进行 SFTP?【英文标题】:How to SFTP with PHP? 【发布时间】:2011-06-09 00:57:42 【问题描述】:我遇到过许多用于 Web FTP 客户端的 php 脚本。我需要在 PHP 中将 SFTP 客户端实现为 Web 应用程序。 PHP 是否支持 SFTP?我找不到任何样品。 谁能帮我解决这个问题?
【问题讨论】:
【参考方案1】:PHP 具有 ssh2 流包装器(默认禁用),因此您可以通过使用ssh2.sftp://
协议来将 sftp 连接与支持流包装器的任何函数一起使用,例如
file_get_contents('ssh2.sftp://user:pass@example.com:22/path/to/filename');
或者 - 当也使用ssh2 extension时
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');
$sftp = ssh2_sftp($connection);
$stream = fopen("ssh2.sftp://$sftp/path/to/file", 'r');
见http://php.net/manual/en/wrappers.ssh2.php
顺便说一句,关于这个话题已经有很多问题了:
https://***.com/search?q=sftp+php【讨论】:
file_get_contents 和 file_put_contents 都很棒。从来不知道他们使用 sftp,它比使用内置的 sftp 东西容易得多。谢谢! 即使使用 file_get_contents() 你仍然需要 ssh2 扩展 (afaik)。 debian/ubuntu 包:apt install libssh2-1-dev php-ssh2 这个答案似乎不正确。 SFTP 使用加密的私钥来提供其安全性,因此在任何 PHP 解决方案中都需要私钥的路径名及其密码。答案不提供此功能。我不知道为什么它得到了这么多的支持。【参考方案2】:ssh2 的功能不是很好。难以使用且难以安装,使用它们将保证您的代码具有零可移植性。我的建议是使用phpseclib, a pure PHP SFTP implementation。
【讨论】:
@indranama 您会将其标记为正确答案,以便未来的用户不必阅读 cmets 即可找到最适合您的答案吗? phpseclib 安装起来并不容易,只是我的经验【参考方案3】:我发现“phpseclib”应该可以帮助您解决这个问题(SFTP 和更多功能)。 http://phpseclib.sourceforge.net/
要将文件放入服务器,只需调用(来自http://phpseclib.sourceforge.net/sftp/examples.html#put的代码示例)
<?php
include('Net/SFTP.php');
$sftp = new Net_SFTP('www.domain.tld');
if (!$sftp->login('username', 'password'))
exit('Login Failed');
// puts a three-byte file named filename.remote on the SFTP server
$sftp->put('filename.remote', 'xxx');
// puts an x-byte file named filename.remote on the SFTP server,
// where x is the size of filename.local
$sftp->put('filename.remote', 'filename.local', NET_SFTP_LOCAL_FILE);
【讨论】:
git repo 在这里:github.com/phpseclib/phpseclib/tree/master/phpseclib 你能更新你对 phpseclib 2.0 的答案吗?您当前的示例已过时。【参考方案4】:安装 Flysystem v1:
composer require league/flysystem-sftp
那么:
use League\Flysystem\Filesystem;
use League\Flysystem\Sftp\SftpAdapter;
$filesystem = new Filesystem(new SftpAdapter([
'host' => 'example.com',
'port' => 22,
'username' => 'username',
'password' => 'password',
'privateKey' => 'path/to/or/contents/of/privatekey',
'root' => '/path/to/root',
'timeout' => 10,
]));
$filesystem->listFiles($path); // get file lists
$filesystem->read($path_to_file); // grab file
$filesystem->put($path); // upload file
....
阅读:
https://flysystem.thephpleague.com/v1/docs/
升级到 v2:
https://flysystem.thephpleague.com/v2/docs/advanced/upgrade-to-2.0.0/
安装
composer require league/flysystem-sftp:^2.0
那么:
//$filesystem->listFiles($path); // get file lists
$allFiles = $filesystem->listContents($path)
->filter(fn (StorageAttributes $attributes) => $attributes->isFile());
$filesystem->read($path_to_file); // grab file
//$filesystem->put($path); // upload file
$filesystem->write($path);
【讨论】:
答案不再有效,因为方法改变了。没有 put 或 read 可用了! @Mr.Jo 如果您查看 v1 文档,他们就是 @Wanjia 在 ***,我们按照自己的想法开车。所以最好保持更新答案。【参考方案5】:我进行了一次全面的逃避,并编写了一个创建批处理文件的类,然后通过system
调用调用sftp
。不是最好(或最快)的方法,但它可以满足我的需要,并且不需要在 PHP 中安装任何额外的库或扩展。
如果您不想使用 ssh2
扩展,这可能是您的选择
【讨论】:
帮助我的相关主题:groups.google.com/forum/#!topic/comp.security.ssh/_55TdDdUTCw以上是关于如何使用 PHP 进行 SFTP?的主要内容,如果未能解决你的问题,请参考以下文章
php 如何通过连接sftp并下载sftp服务器指定目录下的所有文件到本地?