一段php的文件下载函数

来源:互联网 发布:淘宝网 货到付款 编辑:程序博客网 时间:2024/05/17 04:29

一段php的文件下载函数(可下任意文件类型)
使用方法
<?php
downFile("文件路径");
?>

   本文相关代码如下:
<?php
if(isset($_GET["file"])){
   downFile(realpath($_GET["file"]));
}
else
{
   echo("请输入文件路径!");
}
function downFile($sFilePath)
{
   if(file_exists($sFilePath)){
       $aFilePath=explode("/",str_replace("
//","/",$sFilePath),$sFilePath);
       $sFileName=$aFilePath[count($aFilePath)-1];
       $nFileSize=filesize ($sFilePath);
       header ("Content-Disposition: attachment; filename=" . $sFileName);
       header ("Content-Length: " . $nFileSize);
       header ("Content-type: application/octet-stream");
       readfile($sFilePath);
   }
   else
   {
       echo("文件不存在!");
   }
}
?>
 
原创粉丝点击