列出远程主机上的文件失败

时间:2018-09-10 21:38:45

标签: php

我有一个代码:

scandir("ssh2.sftp://" . intval($sftpHandle) . $remoteDir);

为什么相同的代码适用于一台服务器,但不适用于另一台服务器? 两台服务器上都有一个文件。我可以通过Filezilla对其进行管理,而不会出现问题。 即使有很多文件,第一个也会返回array('.'),而另一个会返回array('file1', 'file2', 'file3', etc)

即使我无法使用scandir()列出文件,命令ssh2_scp_recv($sshHandle, $remoteDir/file1, $localDir/file1)也可以正常工作。 ssh2_exec($sshHandle, "ls $remoteDir")对我也很好。

请注意,我将$ ftpHandle 用于scandir(),但将$ sshHandle 用于ssh2_ *函数。 将$ sshHandle用于scandir()会导致“分段错误” 错误。

我知道我可以通过解析ssh2_exec($sshHandle, "ls $remoteDir")输出来解决此问题,但如果可能的话,宁愿以正确的方式进行操作。

我的PHP版本是7.0.31

1 个答案:

答案 0 :(得分:0)

这应该可行

$connection = ssh2_connect($url);

// login
if (!ssh2_auth_password($connection, $username, $password)) throw new Exception('Unable to connect server.');

// Create SFTP resource
if (!$sftp = ssh2_sftp($connection)) throw new Exception('Unable to create connection.');

$localDir  = '/path/to/local/dir';
$remoteDir = '/path/to/remote/dir';

// download all the files or list all
$files    = scandir('ssh2.sftp://' . $sftp . $remoteDir);

if (!empty($files)) {
  foreach ($files as $file) {
    if ($file != '.' && $file != '..') {


       // here you can print files using $file

       // or download file by uncommenting below line

      //ssh2_scp_recv($connection, "$remoteDir/$file", "$localDir/$file");

    }
  }
}