//此檔案用於快速測試UTF8編碼的檔案是否加了BOM,並可自動移除
//By Bob Shen
$basedir="."; //修改此行為需要偵測的目錄,點表示目前目錄
$auto=1; //是否自動移除發現的BOM資訊。 1為是,0為否。
//以下不用改動
if ($dh = opendir($basedir)) {
while (($file = readdir($dh)) !== false) {
if ($file!='.' && $file!='..' && !is_dir($basedir."/".$file)) echo "filename: $file ". checkBOM("$basedir/$file")."
";
#}
closedir($dh);
##}# function checkBOM ($filename) {$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) {
$rest=substr($contents, 3);
rewrite ($filename, $ rest);
return true;
}
else return ("BOM Not Found.");
}
$filenum=fopen($filename,"w");
flock($filenum,LOCK_EX);
fwrite($filenum,$data);
fclose($filenum);
}
以上是利用PHP去掉文件頭部(BOM)的詳細內容。更多資訊請關注PHP中文網其他相關文章!