以下是我用来在 codeigniter 中强制在我的服务器上下载一些文件的代码。下载的文件已损坏,MS Excel 无法打开它。我认为这段代码没有任何问题。我使用 ftp 从服务器下载了文件并检查了它们,它们打开得很好。我不知道我哪里做错了。
$this->load->helper('download');
$path = base_url('reference/filename.xlsx');
$data = file_get_contents($path); // Read the file's contents
$name = 'filename.xlsx';
force_download($name, $data);