php批量去掉bom的方法_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php批量去掉bom的方法

php批量去掉bom的方法

 2015/1/24 23:19:48  lunzi  程序员俱乐部  我要评论(0)
  • 摘要:php批量去掉bom的方法<?php$auto=1;checkdir('F:/php/wwwroot/teamga');functioncheckdir($basedir){if($dh=opendir($basedir)){while(($file=readdir($dh))!==false){if($file{0}=='.'){continue;}if($file!='.'&&$file!='..'){if(!is_dir($basedir."/".$file))
  • 标签:方法 PHP
php批量去掉bom的方法

class="java">
<?php

$auto = 1;
checkdir('F:/php/wwwroot/teamga');
function checkdir($basedir){
if ($dh = opendir($basedir)) {
  while (($file = readdir($dh)) !== false) {
   if($file{0} == '.')
   {
    continue;
   }
   if ($file != '.' && $file != '..'){
    if (!is_dir($basedir."/".$file)) {
     echo "filename: $basedir/$file ".checkBOM("$basedir/$file")." <br>";
    }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 ("<font color=red>BOM found, automatically removed.</font>");
  } else {
   return ("<font color=red>BOM found.</font>");
  }
}
else return ("BOM Not Found.");
}
function rewrite ($filename, $data) {
$filenum = fopen($filename, "w");
flock($filenum, LOCK_EX);
fwrite($filenum, $data);
fclose($filenum);
}

?>
发表评论
用户名: 匿名