本篇文章是对PHP中过滤页面中的BOM的实现代码进行了详细的分析介绍
需要的朋友参考下
复制代码 代码如下:
function checkBOM ($filename) {
$contents = file_get_contents($filename);
$charset[] = substr($contents );
$charset[] = substr($contents );
$charset[] = substr($contents );
if (ord($charset[]) == && ord($charset[]) == && ord($charset[]) == ) {
$rest = substr($contents );
rewrite $rest;
}else{
return false;
}
}