Home > php教程 > php手册 > body text

php问题:Warning: Cannot modify header information

WBOY
Release: 2016-06-06 19:50:51
Original
843 people have browsed it

写php代码时候突然碰到一个问题: 提示Warning: Cannot modify header information - headers already sent by ...、 页面上也出现了好多乱七八糟的东西,很奇怪,开始时发现这个问题有时候会出现有时候消失。很是奇怪 后面在网上查询发现好多改php配置的,

写php代码时候突然碰到一个问题:

提示Warning: Cannot modify header information - headers already sent by ...、

页面上也出现了好多乱七八糟的东西,很奇怪,开始时发现这个问题有时候会出现有时候消失。很是奇怪

后面在网上查询发现好多改php配置的,感觉本来好好的页面突然出现问题,必然不是php配置的问题,说明代码哪里出现了问题,

回想了一下最新添加的代码,只有几个调用system()执行命令行的方法,然后查了一下system函数,发现了问题:system()函数执行给定的命令,输出和返回结结果。所以应该是执行命令行命令时候输出的信息被输出到了页面上,查询时候又发现一个exec命令,与system类似,但是它执行命令,不输出结果,只返回结果最后一行。所以用exec替换system,这样没有了输出,问题解决!

至于问题有时候出现有时候消失应该是命令行输出导致输出缓存问题

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template