guohao14 2010-10-27 14:46
浏览 270
已采纳

Php实现下载功能过程中出现错误Warning: Cannot modify header information

如题。
我想用php下载服务器某一个文件夹下的文件。
实现代码如下【downfile.php】:
[code="java"]
$path = "d:\wwww\program\";
$filename="test.rar";
$durl = $path.$filename;
//$filename = 'phpcms2008_o2abf32efj883c91a.iso';
$file = @fopen($durl, 'r');
header("Content-Type: application/octet-stream");

header("Accept-Ranges: bytes");

header("Accept-Length: ".filesize($durl));

header("Content-Disposition: attachment; filename=".$filename);

echo fread($file,filesize($durl));
fclose($file);
[/code]
提示错误
Warning: Cannot modify header information - headers already sent by (output started at D:\WebRoot\oem\style\default\header.php:1) in D:\WebRoot\oem\module\download\downfile.php on line 32

我就根据网上找到的方法试了一下。我的只能通过 修改php.ini 来达到目的。output_buffering=on。
请问还有其他的方法吗?
我还想用ob_start();
[code="java"]
<?php ob_start(); ?>
<?php
/*

  • To change this template, choose Tools | Templates
  • and open the template in the editor. */ $filetype = $_REQUEST['filetype']; //echo $filetype; $path = dirname(__FILE__)."/../../seq/"; //$durl = $path; $filename = ""; if($filetype == ""||$filetype == null){ echo "当前文件不存在!"; }else{ $filename = "test.rar"; $durl = $path.$filename; //$filename = 'phpcms2008_o2abf32efj883c91a.iso'; $file = @fopen($durl, 'r'); header("Content-Type: application/octet-stream");

header("Accept-Ranges: bytes");

header("Accept-Length: ".filesize($durl));

header("Content-Disposition: attachment; filename=".$filename);

echo fread($file,filesize($durl));
fclose($file);
ob_end_flush();
?>
[/code]结果还是报错。请问为什么?

  • 写回答

2条回答 默认 最新

  • enet_java 2010-10-27 15:07
    关注

    你的解决办法就是最正确的了,MS已经找不到更好的办法了 :idea:

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化