PHP强制性文件下载(任意文件格式)

[ 2011-10-23 20:01:54 | 作者: admin ]
字号: | |
p.s. 适合直接下载需求,如下载桌面网址

/********************
*@file - path to file
*/
function force_download($file)
{
if ((isset($file))&&(file_exists($file))) {
header("Content-length: ".filesize($file));
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . $file . '"');
readfile("$file");
} else {
echo "No file selected";
}
}
评论Feed 评论Feed: http://blog.xg98.com/feed.asp?q=comment&id=1732

这篇日志没有评论。

此日志不可发表评论。