gpt4 book ai didi

php - 如何使php文件下载?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:09:41 26 4
gpt4 key购买 nike

所以我在我的测试站点上的 PHP 脚本中有这个:

$file="clip.mp4";
$fake="clip_testing.mp4";
$fsize = filesize($file);
header("Content-Length: $fsize");
header("Content-Disposition: attachment; filename=$fake");
header("Content Type: application/download");

set_time_limit(0);
$fs = @fopen($file,"rb");

while(!feof($fs))

{
print(@fread($fs, 1024*8));
ob_flush();
flush();
}

当我在链接中使用它并下载文件时,我的文件的前 7 个字节被更改.. 因此我必须先编辑程序才能使用它。当我说前 7 个字节已更改时,我添加了一张图片以更清楚地说明我在说什么。我缺少标题吗?谁能帮我? Comparison

编辑:如果你们在查看图片时遇到问题,因为它的大小,请在新选项卡中查看不带格式的图片,这样它就会是原始尺寸。

最佳答案

我认为您的 <?php 之前有 4 个空行标签。

那8个字节是换行符的4次\r\n .

关于php - 如何使php文件下载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9511279/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com