我正在尝试使用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);
?>