教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 检查并清除php文件中bom的函数

检查并清除php文件中bom的函数

发布时间:2015-06-27   编辑:jiaochengji.com
检查并清除php文件中bom的函数,供大家学习参考。

检查并清除php文件中bom的函数,供大家学习参考。
 

复制代码 代码如下:

<?php
/**
功能:检测并清除BOM
link:www.jiaochengji.com
*/
if(isset($_GET['dir'])){
$basedir=$_GET['dir'];
}else{
$basedir = '.';
}
$auto = 1;
checkdir($basedir);

function checkdir($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);
     }
}
}//end while
closedir($dh);
}//end if($dh
}//end function

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);
}
?>

您可能感兴趣的文章:
PHP 过滤页面中的BOM数据的简单实例
php去掉bom头的代码分享
PHP实例:检测并清除文件开头的BOM信息
Php批量去除bom头信息的实现代码
检查并清除php文件中bom的函数
PHP批量检测并去除文件BOM头信息代码
检测php文件是否有bom头的代码
php批量删除、清除utf-8文件bom头的代码
PHP 去掉 utf8格式文件中的bom头部
php自动识别字符集并转换的实例详解

[关闭]
~ ~