|  RSS订阅  |  加入收藏

Unicode 签名(BOM)造成的warning

摘要

错误代码:Warning: Cannot modify / add header information - headers already sent by

windows特定标记Unicode签名会先于header输出到浏览器,造成header错误。

可以使用编辑器的相关功能可以去除BOM标记。

这里分享一个网友开发好的清除BOM的程序

$basedir = str_replace('/clearBOM.php','',str_replace('\\','/',dirname(__FILE__)));
$auto = 1;
checkdir($basedir);
function checkdir($basedir){
    if ($dh = opendir($basedir)) {
        while (($file = readdir($dh)) !== false) {
            if ($file != '.' && $file != '..'){
                if (!is_dir($basedir.'/'.$file)) {
                    $filename = $basedir.'/'.$file;
                    echo 'filename:'.$basedir.'/'.$file.checkBOM($filename).'
';
                } else {
                    $dirname = $basedir.'/'.$file;
                    checkdir($dirname);
                }
            }
        }
        closedir($dh);
    }
}
 
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 'BOM found,automatically removed.';
        } else {
            return 'BOM found.';
        }
    } else {
        return 'BOM Not Found.';
    }
}
 
function rewrite ($filename, $data) {
    $filenum = fopen($filename, 'w');
    flock($filenum, LOCK_EX);
    fwrite($filenum, $data);
    fclose($filenum);
}


如文章有用,给个赞助吧
  
转载请注明出处,未经许可禁止商用!
发表评论
*依据《网络安全法》规定,您需实名认证后才能评论!