做下载页面,怎么做呢?呵呵代码如下,很简单。ci用户手册中用介绍:
$this->load->helper('download');
$data = file_get_contents(APPPATH."download/setup.exe");
$name = 'setup.exe';
force_download($name, $data);
本文介绍了使用CI(CodeIgniter)框架实现文件下载的方法。通过加载下载助手并利用file_get_contents读取文件内容,最终使用force_download进行文件的强制下载。
做下载页面,怎么做呢?呵呵代码如下,很简单。ci用户手册中用介绍:
$this->load->helper('download');
$data = file_get_contents(APPPATH."download/setup.exe");
$name = 'setup.exe';
force_download($name, $data);
1202
453

被折叠的 条评论
为什么被折叠?