CodeIgniter - force_download() no output

前端 未结 5 662
情深已故
情深已故 2021-02-06 07:37

Fast to explain, but I can\'t get it to work:

In this simple code, the function force_download simply doesn\'t make any output.

$this->load->helper         


        
5条回答
  •  无人共我
    2021-02-06 07:57

    Remove that echo $data."/".$filename; It should be like this

    $this->load->helper('download');
    $data = file_get_contents("modulos/".$filename); // Read the file's contents
    force_download($filename, $data); 
    

提交回复
热议问题