PHP强制下载""出现在文件文本之前

时间:2014-04-27 18:48:04

标签: php download

我正在尝试使用PHP文件强制下载txt,php,html& css文件,但当它下载的“zz”出现在文件内容之前。 这是我的代码:

<?php
$file = "../files/".$_GET["f"]; 

header("Content-Description: File Transfer"); 
header("Content-Type: application/octet-stream"); 
header("Content-Disposition: attachment; filename=".$_GET["f"]); 

readfile($file); 
?>

0 个答案:

没有答案