PHP實例:偵測並清除檔案開頭的BOM訊息
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
發布: 2016-07-25 08:51:28
-
- ini_set('memory_limit', '-1');
- /*检测并清除BOM*/
- $basedir = dirname(__FILE__);//扫描当前文件路径 可自动设置
- $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; // bbs.it-home.org
- $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.");
- }
- }
- 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
复制代码
|
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
-
2025-02-26 03:58:14
-
2025-02-26 03:38:10
-
2025-02-26 03:17:10
-
2025-02-26 02:49:09
-
2025-02-26 01:08:13
-
2025-02-26 00:46:10
-
2025-02-25 23:42:08
-
2025-02-25 22:50:13
-
2025-02-25 21:54:11
-
2025-02-25 20:45:11
最新問題
-
2025-03-19 14:08:27
-
2025-03-19 14:07:29
-
2025-03-19 14:06:28
-
2025-03-19 14:05:31
-
2025-03-19 14:04:29