如何在php codeigniter中用sftp解决多上传问题

问题描述 投票:0回答:1

我在使用PHP Codeigniter将SFTP上传文件到远程服务器时遇到问题。当我上传文件不止一个。所以我的代码:

for($row = 0; $row < $total; $row++)  
{
  $origin = $directory.$file[$row];
  $destination = $des.$file[$row];
  $send= $this->upload($config,$origin,$destination);   
  $filename = $file[$row];
  print_r($filename."\n");

} $this->sftp->close();

所以如果我要上传1000个文件,并且成功从1上传到50但是当文件51无法上传并收到错误消息时

ftp无法上传

什么原因可以显示上面的错误,如何创建句柄重新连接和重新上传下一个文件。所以这个功能:

public function upload($config,$origin,$destination)
{

    $connect = $this->sftp->connect($config);
    $upload = $this->sftp->upload($origin, $destination, 'ascii', '0775');
    //create handling upload
    return $upload;
}

从库sftp上传示例函数:

$file_to_send = @file_get_contents($locpath);
$sftp = intVal($this->sftp);
$stream = fopen("ssh2.sftp://{$sftp}{$rempath}", 'w');       
if (@fwrite($stream, $file_to_send) === FALSE)
{
  if ($this->debug == TRUE)
  {
    $this->_error('ftp_unable_to_upload');
  }
    return FALSE;
  }
  return TRUE

来自library sftp的source sftp库

所以当上传获取消息ftp无法上传时如何处理重新连接和重新上传文件。谢谢

php codeigniter ftp sftp
1个回答
0
投票

你必须增加页面加载时间如果你正在使用localhost。一旦托管,无需增加加载时间。

© www.soinside.com 2019 - 2024. All rights reserved.