我遇到过很多针对Web FTP客户端的PHP脚本。我需要在PHP中将SFTP客户端实现为Web应用程序。 PHP支持SFTP吗?我找不到任何样品。 任何人都可以帮我这个吗?
答案 0 :(得分:69)
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
另外,关于这个话题也有很多问题:
答案 1 :(得分:36)
ssh2功能不是很好。难以使用和更难安装,使用它们将保证您的代码具有零可移植性。我的建议是使用phpseclib, a pure PHP SFTP implementation。
答案 2 :(得分:26)
我发现“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);
答案 3 :(得分:2)
安装Flysystem:
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
....
阅读:
答案 4 :(得分:-1)
我执行了一个完整的cop-out并编写了一个创建批处理文件的类,然后通过sftp
调用调用system
。这不是最好(或最快)的方式,但它适用于我需要的东西,它不需要在PHP中安装任何额外的库或扩展。
如果您不想使用ssh2
扩展程序