dpd20130 2017-06-02 13:51
浏览 150
已采纳

无法通过SFTP使用PHP,ssh2下载最新文件

#!/usr/bin/php
<?php
  $username = "backup";
  $password = "xxxxxxx";
  $url      = '192.168.1.100';
  // Make our connection
  $connection = ssh2_connect($url);

  // Authenticate
  if (!ssh2_auth_password($connection, $username, $password))
     {echo('Unable to connect.');}

  // Create our SFTP resource
  if (!$sftp = ssh2_sftp($connection))
     {echo ('Unable to create SFTP connection.');}


  $localDir  = 'file:///home/hhh/Downloads/dbs';
  $remoteDir = '/home/backup/Dropbox/dbs';
  // download all the files
  $dir = ('ssh2.sftp://' . $sftp . $remoteDir);
  $numberOfFiles = 10;
  $pattern = '/\.(aes|AES)$/'; // check only file with these ext.          
  $newstamp = 2;            
  $newname = "";


  if ($handle = opendir($dir)) {               
       while (false !== ($fname = readdir($handle)))  {            
         // Eliminate current directory, parent directory            
         if (preg_match('/^\.{1,2}$/',$fname)) continue;            
         // Eliminate other pages not in pattern            
         if (! preg_match($pattern,$fname)) continue;            
         $timedat = filemtime("$dir/$fname");
         $fils[$fname] = $timedat;            
         if ($timedat > $newstamp) {
            $newstamp = $timedat;
            $newname = $fname;
          }
         }
        }
  closedir ($handle);

  arsort ($fils, SORT_NUMERIC);
  sfor($i = 0; $i < $numberOfFiles ; $i++)
  $fils2 = array_keys($fils);
  $i = 0;

  foreach($fils2 as $s){
    $i++;
    echo "$i " . $s . "<br>
";
    if($i == $numberOfFiles )break;
  }
  // $newstamp is the time for the latest file
  // $newname is the name of the latest file
  // print last mod.file - format date as you like            

$rttp = ssh2_scp_recv($connection, "$remoteDir/$newname", "$localDir/$newname")

?>

I have been trying to download the latest FILES from a directory using sftp. I have only managed to download ONE file instead to 10. I also was able to tweak it to download all the files but that is not i what I was after.

I would like to make it work so that I can be able to download a certain X number of files.

  • 写回答

1条回答

  • dou29106 2017-07-05 10:07
    关注
    #!/usr/bin/php
    
    <?php
    $username = "user";
    $password = "password";
    $url      = "host ip";
    // Make our connection
    $connection = ssh2_connect($url);
    
    // Authenticate
    if (!ssh2_auth_password($connection, $username, $password))
         {echo('Unable to connect.');}
    
    // Create our SFTP resource
    if (!$sftp = ssh2_sftp($connection))
         {echo ('Unable to create SFTP connection.');}
    
    //$dir
    $localDir  = "/path/to/localdir/".date('Y-m-d');
    exec("mkdir -p '$localDir'");
    echo $localDir;
    
    
    $remoteDir = "/path/to/remotedir";
     // download all the files
    $files = scandir ('ssh2.sftp://' . $sftp . $remoteDir);
    if (!empty($files)) {
      foreach ($files as $file) {
        if ($file != '.' && $file != '..') {
            if (substr($file, 0, 11)== date('d-M-Y')) {
    
                //date('d-M-Y', strtotime('yesterday') #for retriving the previous day
                # code...
                 // echo $file;
                  ssh2_scp_recv($connection, "$remoteDir/$file", "$localDir/$file");
    
            }
    
        }
      }
    }
     ?>
    

    This downloads the latest files from a remote directory and creates a new local directory by date where it downloads the new remote files

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制