1

我有一个有效的代码,在这里:

if (isset($_GET['file']) && isset($_GET['name']))
{
$file = base64_decode($_REQUEST['file']);

$ch = curl_init($file);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);

$data = curl_exec($ch);
curl_close($ch);

if (preg_match('/Content-Length: (\d+)/', $data, $matches)) 
{
    // Contains file size in bytes
    $contentLength = (int)$matches[1];
}

header("Content-type: application/x-file-to-save");
header("Content-Disposition: attachment; filename=".$_REQUEST['name']);
header('Content-Length: ' . $contentLength);
header('Content-Transfer-Encoding: binary');

@readfile($file);

}

然后我将服务器更改为不同的主机提供程序,并且代码停止工作。当我从 chrome 下载时,它只会不断加载和加载,但是当我从 IDM 之类的下载管理器下载时,它会获得正确的名称和大小,但是当我按下开始时,它会出现错误,说明不支持恢复或其他内容。 ..

同样,当我使用不同的提供者时,代码仍然有效。

4

1 回答 1

1

可能是在readfile()使用之前输出的错误ob_clean(); flush();以删除之前的任何输出readfile

于 2012-07-05T04:23:47.110 回答