分类

最新评论

Kevin's Blog
.
不管你来或不来,我都在这里--- my country of freedom.
2024
如果人生是值得的,那就值得记录…

十月 廿四 甲辰【龙】年
乙亥月 壬辰日 
Sun,24 Nov 2024 10:24:44
自由国度 平凡的足迹
Fri, 16 Sep 2022 5
// 去除BOM
function qcbom(){
	    $sql = new Baksql(\think\Config::get("database"));
	    $allfiles = $sql->allfiles(ROOT_PATH);
	    foreach($allfiles as $file){
	        if(stristr($file,'.php')||stristr($file,'.html')||stristr($file,'.txt')){
	            if(file_exists($file)){
        	        $str = file_get_contents($file);
        	        if($this->SearchBOM($str)){
        	            echo $file.'<br>';
        	            $str = substr($str, 3);
        	            file_put_contents($file, $str);
        	        }
	            }
	        }
	    }
	    exit;
	}
	
	// 搜索当前文件是否有BOM
	function SearchBOM($string) {
	    if(substr($string,0,3) == pack("CCC",0xef,0xbb,0xbf)) return true;
	    return false;
	}
共有0条留言

154368