服务器之家

服务器之家 > 正文

PHP批量去除BOM头代码分享

时间:2020-10-06 21:12     来源/作者:PHP教程网
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/**
* 去除bom头信息
*/
header("Content-Type:text/html; charset=utf-8");
 
$auto = 1;
checkdir("D:\wamp\www\sales");
function checkdir($basedir){
if ($dh = opendir($basedir)) {
 while (($file = readdir($dh)) !== false) {
  if ($file != '.' && $file != '..'){
  if (!is_dir($basedir."/".$file)) {
   echo "文件名称: $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并且已自动删除</font>");
 } else {
  return ("<font color=red>发现BOM</font>");
 }
}
else return ("没有发现BOM");
}
function rewrite ($filename, $data) {
$filenum = fopen($filename, "w");
flock($filenum, LOCK_EX);
fwrite($filenum, $data);
fclose($filenum);
}
?>
标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国 2021-05-08
返回顶部