|
发表于 2024-1-5 22:32:22
|
显示全部楼层
PHP复制代码 public function downloadtpl ()
{
$filePath01 = 'uploads/tpls/tpl.txt';
if (file_exists($filePath01)) {
$data = file_get_contents($filePath01);
$this->load->helper('download');
force_download ('stockTpl.txt', $data, 'application/octet-stream');
} else {
show_error ('bad file');
}
} 复制代码
试试这样可以吗? |
|