批量去除PHP文件中bom的PHP代码
前端之家收集整理的这篇文章主要介绍了
批量去除PHP文件中bom的PHP代码,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
需要去除BOM,就把附件里的tool.PHP文件放到目标目录,然后在浏览器访问tool.PHP即可!
<div class="codetitle"><a style="CURSOR: pointer" data="87539" class="copybut" id="copybut87539" onclick="doCopy('code87539')"> 代码如下:
<div class="codebody" id="code87539">
<?
PHP //此
文件用于
快速测试UTF8编码的
文件是不是加了BOM,并可
自动移除
$basedir="."; //
修改此行为需要检测的目录,点表示当前目录
$auto=1; //是否
自动移除发现的BOM信息。1为是,0为否。
//以下不用改动
if ($dh = opendir($basedir)) {
while (($file = readdir($dh)) !== false) {
if ($file!='.' && $file!='..' && !is_dir($basedir."/".$file))
echo "filename: $file ".checkBOM("$basedir/$file")."
";
}
closedir($dh);
}
function checkBOM ($filename) {
global $auto;
$contents=file_get_contents($filename);
$charset[1]=substr($contents,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);
}
?>