当前位置:Gxlcms > PHP教程 > PHP过滤页面中的BOM数据的简单实例

PHP过滤页面中的BOM数据的简单实例

时间:2021-07-01 10:21:17 帮助过:2人阅读

  1. /**
  2. * 过滤页面中bom
  3. * edit bbs.it-home.org
  4. */
  5. function checkBOM ($filename) {
  6. $contents = file_get_contents($filename);
  7. $charset[1] = substr($contents, 0, 1);
  8. $charset[2] = substr($contents, 1, 1);
  9. $charset[3] = substr($contents, 2, 1);
  10. if (ord($charset[1]) == 239 && ord($charset[2]) == 187 && ord($charset[3]) == 191) {
  11. $rest = substr($contents, 3);
  12. rewrite $rest;
  13. }else{
  14.  return false;
  15. }
  16. }
  17. ?>

人气教程排行