转自个人博客:
有时候网页头部会出现一个空白行,查看源码发现body开头初有一个非法字符
,原因是页面的编码是utf-8 + bom。
utf-8 + bom编码方式一般会在windows操作系统中出现,比如windows自带的记事本等软件,在保存一个以utf-8编码的文件时,会在文件开始的地方插入三个不可见的字符(0xef 0xbb 0xbf,即bom)。它是一串隐藏的字符,用于让记事本等编辑器识别这个文件是否以utf-8编码。对于一般的文件,这样并不会产生什么麻烦。但对于 php来说,bom是个大麻烦。因为php并不会忽略bom,所以在读取、包含或者引用这些文件时,会把bom作为该文件开头正文的一部分。根据嵌入式语言的特点,这串字符将被直接临在执行(显示)出来,即我们看到的()字符。
找到出现
字符的相关页面(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 chart="utf-8"> <ti竹子有什么精神tle>utf8 bom 清除器</title> <style> body { font-size: 10px; font-family: arial, helvetica, sans-rif; 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; } el { $content = file_get_contents($shome . $win32 . $file); $bom = archbom($content); if ($bom) { $bombed[count($明主bombed)] = $shome . $win32 . $file; // 移出bom信息 $content = substr($content,3); // 写回到原始文件 file_put_contents($shome . $win32 . $file, $content); } } } } $folder->clo(); if(count($foundfolders) > 0) { foreach ($foundfolders as $folder) { recursivefolder($folder, $win32); } }}// 搜索当前文件是否有bomfunction archbom($string) { 赛睿键盘 if(substr($string,0,3) == pack("ccc",0xef,0xbb,0xbf)) return true; return fal;}?></body></html>
转自个人博客:
本文发布于:2023-04-07 12:30:08,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/ef124c9833aca4d92d623ccdd88e470b.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:网站页面顶部出现空白行字符的原因以及完美解决办法.doc
本文 PDF 下载地址:网站页面顶部出现空白行字符的原因以及完美解决办法.pdf
留言与评论(共有 0 条评论) |