PHP 过滤页面中的BOM(实现代码)

Jamina ·
更新时间:2024-11-10
· 642 次阅读

代码如下:
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

需要 登录 后方可回复, 如果你还没有账号请 注册新账号