欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-06-16 22:47:37
...
  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. ?>
复制代码