欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

网站页面顶部出现空白行&#65279字符的原因以及完美解决办法

程序员文章站 2023-02-02 10:02:37
转自个人博客 :http://hurbai.com 有时候网页头部会出现一个空白行,查看源码发现body开头初有一个非法字符 ,原因是页面的编码是UTF 8 + BOM。 UTF 8 + BOM编码方式一般会在windows操作系统中出现,比如WINDOWS自带的记事本等软件,在保存一个以UTF 8 ......

转自个人博客

有时候网页头部会出现一个空白行,查看源码发现body开头初有一个非法字符&#65279,原因是页面的编码是utf-8 + bom。

utf-8 + bom编码方式一般会在windows操作系统中出现,比如windows自带的记事本等软件,在保存一个以utf-8编码的文件时,会在文件开始的地方插入三个不可见的字符(0xef 0xbb 0xbf,即bom)。它是一串隐藏的字符,用于让记事本等编辑器识别这个文件是否以utf-8编码。对于一般的文件,这样并不会产生什么麻烦。但对于 php来说,bom是个大麻烦。因为php并不会忽略bom,所以在读取、包含或者引用这些文件时,会把bom作为该文件开头正文的一部分。根据嵌入式语言的特点,这串字符将被直接执行(显示)出来,即我们看到的(&#65279)字符。

解决办法

找到出现&#65279字符的相关页面(php,html,css,js等),查看页面编码方式,如果是utf-8 + bom编码方式,则使用notepad++或其他工具存储为"utf-8无bom"即可解决。

如果文件比较多,不知道从何入手时,这时可使用下面的方法来实现。

将下面代码保存为a.php(随意命名)文件放到根目录下,然后运行一下这个文件,即可自动清储格式。

** 补充:**如果是在服务器中实现清除,为了安全起见,首先备份下再操作,另外请确保文件有写入权限,否则无法清除。

<?php
// 设定你要清除bom的根目录(会自动扫描所有子目录和文件)
$home = dirname(__file__);
// 如果是windows系统,修改为:$win = 1;
$win = 0;
?>
<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>utf8 bom 清除器</title>
    <style>
        body { font-size: 10px; font-family: arial, helvetica, sans-serif; background: #fff; color: #000; }
        .found { color: #f30; font-size: 14px; font-weight: bold; }
    </style>
</head>
<body>
<?php
$bombed = array();
recursivefolder($home);
echo '<h2>这些文件有utf8 bom,但我清理了它们::</h2><p class="found">';
foreach ($bombed as $utf) { echo $utf ."<br />\n"; }
echo '</p>';
// 递归扫描
function recursivefolder($shome) {
    global $bombed, $win;
    $win32 = ($win == 1) ? "\\" : "/";
    $folder = dir($shome);
    $foundfolders = array();
    while ($file = $folder->read()) {
        if($file != "." and $file != "..") {
            if(filetype($shome . $win32 . $file) == "dir"){
                $foundfolders[count($foundfolders)] = $shome . $win32 . $file;
            } else {
                $content = file_get_contents($shome . $win32 . $file);
                $bom = searchbom($content);
                if ($bom) {
                    $bombed[count($bombed)] = $shome . $win32 . $file;
                    // 移出bom信息
                    $content = substr($content,3);
                    // 写回到原始文件
                    file_put_contents($shome . $win32 . $file, $content);
                }
            }
        }
    }
    $folder->close();
    if(count($foundfolders) > 0) {
        foreach ($foundfolders as $folder) {
            recursivefolder($folder, $win32);
        }
    }
}
// 搜索当前文件是否有bom
function searchbom($string) {
    if(substr($string,0,3) == pack("ccc",0xef,0xbb,0xbf)) return true;
    return false;
}
?>
</body>
</html>

转自个人博客