dongzhong5967 2012-04-13 09:44
浏览 51
已采纳

如何忽略php中的重定向错误

I got this warning in php:

Cannot modify header information - headers already sent by (output started at

When I installed mysql, apache, and php separately but when I'm using Wamp the warning does not exist and the page redirects gracefully.

I have already tried setting the error reporting to only display errors and not warnings and what happened is that the warning didn't show up but the page also didn't redirect.

I know this is already considered bad practice but my code base has a lot of these codes and modifying them all might introduce new bugs to the code. Is there any way to completely ignore this warning in php?

  • 写回答

5条回答 默认 最新

  • doujianwan7570 2012-04-13 09:54
    关注

    The classic way to avoid - and not ignore - this problem is with output buffering, ob_start() and ob_flush(). Start the buffering before any output, and finish with the flush explicitly, or it may do so automatically. This captures any output rather than printing it, and so any headers that are output are done so before any visible content.

    Fixing the bug of things being output, from the filename you had in the error message is the best way to fix this though. Removing the closing '?>' from files when it's not needed might help.

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

报告相同问题?

悬赏问题

  • ¥15 QT6颜色选择对话框显示不完整
  • ¥20 能提供一下思路或者代码吗
  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下