检查php文件中是否含有bom的函数_PHP教程
程序员文章站
2024-04-03 23:32:34
...
复制代码 代码如下:
/*检测并清除BOM*/
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")."
";
}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 "BOM found, automatically removed.";
}else{
return ("BOM found.");
}
} www.jb51.net
else return ("BOM Not Found.");
}//end function
function rewrite($filename, $data){
$filenum = fopen($filename, "w");
flock($filenum, LOCK_EX);
fwrite($filenum, $data);
fclose($filenum);
}//end function
?>
上一篇: MySql中的视图的概念及应用
推荐阅读
-
检查php文件中是否含有bom的函数_PHP教程
-
php strstr查找字符串中是否包含某些字符的查找函数_PHP教程
-
批量去除PHP文件中bom的PHP代码_PHP教程
-
php检查字符串中是否有外链的方法,php字符串_PHP教程
-
PHP函数in_array()如何检查数组中的值_PHP教程
-
php中检查文件或目录是否存在的代码小结
-
PHP 去掉 utf8格式文件中的bom头部_PHP教程
-
php中检查文件或目录是否存在的代码小结_php技巧
-
html - mysql中的这个utf8_general_ci是否就对应php文档的UTF-8 是否就是文件格式的utf-8无BOM编码?
-
PHP中strncmp()函数比较两个字符串前2个字符是否相等的方法,phpstrncmp_PHP教程