php下实现文件下载实现代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-01-03 09:49:39 浏览: 评论:0
文章介绍了利用php来实现读取文件并且下载的代码,php要下载文件必须用到header函数,大家可参考一下,代码如下:
- <?php
- $file = 'monkey.gif';
- if (file_exists($file)) {
- header('Content-Description: File Transfer');
- header('Content-Type: application/octet-stream');
- header('Content-Disposition: attachment; filename='.basename($file));
- header('Content-Transfer-Encoding: binary');
- header('Expires: 0');
- header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
- header('Pragma: public');
- header('Content-Length: ' . filesize($file));
- ob_clean();
- flush();
- readfile($file);
- exit;
- }
- ?>
以上代码是下载代码,接下来贴一段在线预览pdf文件的代码:
- <?php
- public function fddAction()
- {
- // get attachment location
- $attachment_location = $_SERVER["DOCUMENT_ROOT"] . "/pdf/fdd/sample.pdf";
- if (file_exists($attachment_location)) {
- // attachment exists
- // send open pdf dialog to user
- header('Cache-Control: public'); // needed for i.e.
- header('Content-Type: application/pdf');
- header('Content-Disposition: inline; filename="sample.pdf"');
- readfile($attachment_location);
- die(); // stop execution of further script because we are only outputting the pdf
- } else {
- die('Error: File not found.');
- }
- }
- ?>
Tags: 实现 文件 下载
相关文章
- ·php中实现图片文件上传程序代码(2013-11-14)
- ·php文件下载实现方法(2014-08-05)
- ·php实现文件上传的程序代码(2013-11-13)
- ·php 实现多文件上传程序代码(2013-11-13)
- ·php utf8编码上传中文文件名出现乱码(2013-11-14)
- ·php中检测上传文件类型与上传图片大小代码(2013-11-14)
- ·CKEditor+CKFinder+php上传文件配置方法(2013-12-02)
- ·PHP多文件上传(2013-12-09)
- ·php 文件上传实例代码(2013-12-16)
- ·php文件上传程序(2013-12-16)
- ·php文件上传代码(支持文件批量上传)(2013-12-19)
- ·php iframe 无刷新文件上传代码(2013-12-23)
- ·iframe无刷新文件上传实现程序(2014-01-05)
- ·php上传文件与图片重命名方法总结(2014-01-06)
- ·如何设置PHP上传文件大小限制(2014-01-06)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)