在 Yii 2.0 里面文件下载 [ 2.0 版本 ]
$res = \YII::$app->response;
$res->sendFile('./1111.txt');
//指定某个文件发给浏览器进行下载
这么写可以吗,有没有好的下载,分享下
共 3 个回答
-
直接丢个链接出来也是可以的,也可以把信息多补充点方便客户端识别。
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); header('Content-Disposition: attachment;filename='.$file_name); header('Cache-Control: max-age=0'); $objWriter->save('php://output');
共 2 条回复@yy5806065 这个是phpexcel里的一段代码
胖纸囧 觉得很赞 -
public function actionSend() { $wrstr=htmlspecialchars_decode(file_get_contents('public/1.txt')); $outfile=time().'.'.'txt'; header('Content-type: application/octet-stream; charset=utf8'); Header("Accept-Ranges: bytes"); header('Content-Disposition: attachment; filename='.$outfile); echo $wrstr; exit(); }
jayrui612 觉得很赞
37702
注册时间:2016-10-31
最后登录:1970-01-01
在线时长:0小时0分
最后登录:1970-01-01
在线时长:0小时0分
- 粉丝1
- 金钱155
- 威望20
- 积分355