所属分类:PHP实例-函数/算法
function download($filename)
{
if ((isset($filename))&&(file_exists($filename)))
{
header("Content-length: ".filesize($filename));
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . $filename . '"');
readfile("$filename");
}
else
{
echo "Looks like file does not exist!";
}
}
download('shCoreDefault.css');