php force download,Php force Download - downloading corrupted file

问题

Hi I am trying to allow download a demo file which is related to a product. my code is like this

if(isset($_POST['submit'])){

$root = $_SERVER['DOCUMENT_ROOT'];

$path = "/download/";

$path = $root.$path;

$filename = $demo;

$file = $path.$filename;

header('Content-Type: application/force-download');

header("Content-Transfer-Encoding: Binary");

header("Content-Disposition: attachment; filename=\"".basename($file)."\";" );

header("Content-Length: ".filesize($file));

readfile($file);

}

I am able to get file name which is associated with the product by

$demo

After user submits his information, download will start automatically. Now this is downloading a non existing file or corrupted file with the proper file name. please help

回答1:

$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;

}

?>

As you can see Content type is application/octet-steam meaning file is byte by byte encoded. Also the cache headers are set. Then headers are forcefully sent by ob_clean();flush(); and then the file is read.

The file_exists is there to ensure that given file exists. You should also try not not thrust user input as they could easy write names for your php codes and download EACH file. And with ../ in names of the files, even your documents or system files and so on.

来源:https://stackoverflow.com/questions/23192683/php-force-download-downloading-corrupted-file

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值