TP -PHP 去掉Bom头的方法和为什么要清除Bom头

utf-8编码总bom在文件头部.占用三个字符.很多都能识别但是php不能识别bom头

这也是用记事本编辑utf-8编码后执行就会出错的原因了(我用xftp直接修改导致错误

在服务器根目录下建一个clean.bom文件.浏览器运行一下就可以了.

一般会出现json.parse报错.错误信息.

"; 
                } 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 ("BOM found, automatically removed."); 
        } else { 
            return ("BOM found."); 
        } 
    } else
        return ("BOM Not Found."); 
} 
 
function rewrite($filename, $data) 
{ 
    $filenum = fopen($filename, "w"); 
    flock($filenum, LOCK_EX); 
    fwrite($filenum, $data); 
    fclose($filenum); 
} 
?>

你可能感兴趣的:(TP -PHP 去掉Bom头的方法和为什么要清除Bom头)