【问题标题】:Download a file from FTP server to client machine via website with CodeIgniter使用 CodeIgniter 通过网站将文件从 FTP 服务器下载到客户端计算机
【发布时间】:2020-01-12 16:10:26
【问题描述】:

我需要使用 CodeIgniter 下载。我尝试了force_download 函数和download 函数。

使用download 功能它可以工作,但不允许选择下载文件夹。使用强制下载功能,浏览器会下载一个空文件。

$this->load->helper('download');
$path = file_get_contents(base_url()."modulos/".$filename); // get file name
$name = "sample_file.pdf"; // new name for your file

//

force_download($name, $path); // start download

// or

$this->ftp->download($path, '/local/path/to/'.$name);

【问题讨论】:

    标签: php codeigniter download ftp


    【解决方案1】:

    要将文件从 FTP 服务器 一直下载到 客户端,您必须组合/链接这两个功能。

    $temp_path = $temp_file = tempnam(sys_get_temp_dir(), $name);
    $this->ftp->download($path, $temp_path);
    
    $data = file_get_contents($temp_path);
    force_download($name, $data);
    unlink($temp_path);
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2013-11-04
      • 2021-02-20
      • 2011-08-15
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-10-22
      相关资源
      最近更新 更多