今天安装个UTF-8的程序出现了,Cannot modify header information - headers already sent by错误,搜索了一下解决方法:
如果使用utf-8编码,一定要去掉UTF-8中的BOM,这都是因为utf-8编码文件含有的bom原因,而php4,5都是不支持bom的。去掉bom,可以用Notepad++打开转换一下。切记,切记,切记!我的PHP版本估计太低了,呵呵
就是这个问题
网上找的这段代码还真不错,不但能够检测BOM,还能够自动清除BOM,代码如下:
<?php
/*清除rom*/
if(isset($_GET['dir'])){
$basedir=$_GET['dir'];
}else{
$basedir = '.';
}
$auto = 1;
checkdir($basedir);
function checkdir($basedir){
if($dh = opendir($basedir)){
while(($file = readdir($dh)) !== false){
if($file != '.' && $file != '..'){
if(!is_dir($basedir."/".$file)){
echo "filename: $basedir/$file ".checkBOM("$basedir/$file")." <br>";
}else{
$dirname = $basedir."/".$file;
checkdir($dirname);
}
}
}//end while
closedir($dh);
}//end if($dh
}//end function
function checkBOM($filename){
global $auto;
$contents = file_get_contents($filename);
$charset[1] = substr($contents, 0, 1);
$charset[2] = substr($contents, 1, 1);
$charset[3] = substr($contents, 2, 1);
if(ord($charset[1]) == 239 && ord($charset[2]) == 187 && ord($charset[3]) == 191){
if($auto == 1){
$rest = substr($contents, 3);
rewrite ($filename, $rest);
return "<font color=red>BOM found, automatically removed.</font>";
}else{
return ("<font color=red>BOM found.</font>");
}
}
else return ("BOM Not Found.");
}//end function
function rewrite($filename, $data){
$filenum = fopen($filename, "w");
flock($filenum, LOCK_EX);
fwrite($filenum, $data);
fclose($filenum);
}
?>
将以上代码保存为PHP文件,放入你要清除BOM的文件的文件夹根目录,运行一次即可
分享到:
相关推荐
通过以上方法,可以有效地解决“Cannot modify header information - headers already sent by”的错误,确保`setcookie()`正常工作。在编写PHP代码时,最好将输出控制在`setcookie()`之后,同时确保文件编码正确,...
在PHP编程过程中,有时会遇到一个常见的错误提示:“Cannot modify header information - headers already sent”。这个错误通常发生在尝试使用header()函数更改HTTP响应头时,但因为之前已经输出了某些内容,导致...
主要介绍了PHP提示Cannot modify header information - headers already sent by解决方法,是在PHP程序开发中非常典型的错误情况,非常具有实用价值,需要的朋友可以参考下
今天在测试以下代码时遇到该错误: 复制代码 代码如下: ...Warning: Cannot modify header information – headers already sent by… 看了一些网上的方法也没解决,最后在php.ini配置output_buffering默认为4096
在讨论PHP编程时,我们经常会遇到一个常见的错误提示:“Warning: Cannot modify header information - headers already sent by”。这个警告通常是由于开发者在尝试发送HTTP头信息之后,又进行了输出操作而引起的。...
在开发Web应用时,特别是使用PHP编程语言,我们经常会遇到“Cannot modify header information - headers already sent by”错误。这个错误通常发生在脚本尝试发送HTTP头部信息(如setcookie或者header函数)时,但...
本文实例讲述了PHP提示Cannot modify header information – headers already sent by解决方法,是进行PHP程序设计过程中经常会遇到的问题。本文对此以实例形式分析解决方法。分享给大家供大家参考。具体方法如下: ...
以下是对PHP中的Cannot modify header information问题的解决方法进行了详细的分析介绍,需要的朋友可以过来参考下
port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in D Cannot modify header information - headers already sent by (output started at D100) in D Cannot modify header ...
使用setcookie()函数时总是报以下错误: Warning: Cannot modify header information – headers already sent by…. 解决办法如下: 方法一: 在PHP里Cookie的使用是有一些限制的。 1、使用setcookie必须在<...
### PHP header()函数使用详解 #### 标题与描述解析: PHP的header()函数主要用于在实际的HTML内容输出到浏览器之前,向浏览器发送原始的HTTP标头。这些标头可以指示浏览器对即将传输的内容进行特定处理,例如页面...
header("Last-Modified: " . gmdate("r", $max)); ``` 其中,`gmdate()`函数用于格式化时间,`"r"`参数表示遵循RFC 2822格式的HTTP日期。 2. **Expires**: Expires头标用于设置资源的过期时间,以格林威治标准...
用途:主要用于整站所有文件为utf8无bom文件,个别文件却存bom,而造成的如:Warning: Cannot modify header information - headers already sent 等的错误。 如何解决BOM:先放在服务器可执行目录下,使用 浏览器http://...
Warning: Cannot modify header information – headers already sent by (output started at…… 这种提示,彼岸世界上的处理是“解决方法为:在functions.php 的最上面一行 添加函数 ob_start(); 即可”,但实际试...
下面测试ob缓存和程序缓存:在测试前为了测试效果更明显,我们在php.ini...则会出现phpWarning: Cannot modify header information – headers already sent by (output started at D:\www\apache\htdocs\test\t2
然而,在使用header函数之前,开发者常常会遇到“Cannot modify header information - headers already sent”这样的警告。这个警告通常发生在尝试在header函数之前有输出内容,例如echo语句。 首先,我们需要了解...