欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php文件下载功能实现_PHP教程

程序员文章站 2022-05-19 15:54:15
...
/**
* 文件下载功能
* @param string $fileName 文件名称
* @param string $fileExt 文件后缀名称
*/
function downloadFile($fileName, $fileExt = '.txt' )
{
if( empty($fileName)) return FALSE;
$fileName .= $fileExt;
$filePath = TEMI_UPLOAD_PATH . $fileName;
$file = fopen($filePath, "r");
Header("Content-type: application/octet-stream");
Header("Accept-Ranges: bytes");
Header("Accept-Length: " . filesize($filePath));
Header("Content-Disposition: attachment; filename=" . $fileName);
echo fread($file, filesize($filePath));
fclose($file);
}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477902.htmlTechArticle?php /** * 文件下载功能 * @param string $fileName 文件名称 * @param string $fileExt 文件后缀名称 */ function downloadFile($fileName, $fileExt = .txt ) { if( empty($f...