1.文档类型
<?php
function downfile($fileurl)
{
$filename=$fileurl;
$file = fopen($filename, "rb");
Header( "Content-type: application/octet-stream ");
Header( "Accept-Ranges: bytes ");
Header( "Content-Disposition: attachment; filename= 4.doc");
$contents = "";
while (!feof($file)) {
$contents .= fread($file, 8192);
}
echo $contents;
fclose($file);
}
$url="url地址";
downfile($url);
?>
2.压缩包形式(头文件)
<?php
header('Content-type: application/force-download');
header('Content-Disposition: attachment; filename="4.zip"');
@readfile('url地址');
?>