代码如下:
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 $rest;
}else{
return false;
}
}
您可能感兴趣的文章:php Ubb代码编辑器函数代码php UBB 解析实现代码PHP 数据结构 算法描述 冒泡排序 bubble sortphp过滤表单提交的html等危险代码php使用正则过滤js脚本代码实例php中数组首字符过滤功能代码php 对输入信息的进行安全过滤的函数代码php 安全过滤函数代码php实现过滤UBB代码的类
bom
PHP