什么是bom头?

     在utf-8编码文件中BOM在文件头部,占用三个字节,用来标示该文件属于utf-8编码,现在已经有很多软件识别bom头,但是还有些不能识别bom头,比如PHP就不能识别bom头,这也是用记事本编辑utf-8编码后执行就会出错的原因了。

怎么去掉bom头?

  新建一个去除所有文件的BOM头信息的代码文件.然后运行一下.比如:我在服务器根目录新建一个delbom.php文件.运行http://www.xxx.com/delbom.php即可.代码如下:


<?php
if(isset($_GET['dir'])){ //config the basedir
  $basedir=$_GET['dir'];
}else{
  $basedir= '.';
}
$auto= 1;
checkdir($basedir);
functioncheckdir($basedir){
  if($dh= opendir($basedir)) {
    while(($file= readdir($dh)) !== false) {
      if($file!= '.'&& $file!= '..'){
        if(!is_dir($basedir."/".$file)) {
          echo"filename: $basedir/
$file".checkBOM("$basedir/$file")."<br>";
        }else{
          $dirname= $basedir."/".
$file;
          checkdir($dirname);
        }
      }
    }
  closedir($dh);
  }
}
functioncheckBOM ($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>");
    }
  }
  elsereturn("BOM Not Found.");
}
functionrewrite ($filename, $data) {
  $filenum= fopen($filename, "w");
  flock($filenum, LOCK_EX);
  fwrite($filenum, $data);
  fclose($filenum);
}
?>