我在使用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无法上传时如何处理重新连接和重新上传文件。谢谢
你必须增加页面加载时间如果你正在使用localhost。一旦托管,无需增加加载时间。