首頁  >  文章  >  後端開發  >  使用php清除bom示例_PHP教程

使用php清除bom示例_PHP教程

WBOY
WBOY原創
2016-07-13 10:37:07694瀏覽

复制代码 代码如下:

function checkBOM ($filename) { 

       global $auto; 

       $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) { 

           if ($auto == 1) { 

              $rest = substr($contents, 3); 

              rewrite ($filename, $rest); 

              return ("BOM found, automatically removed."); 

           }else { 

              return ("BOM found."); 

           } 

       }else return ("BOM Not Found."); 

    } 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/736816.htmlTechArticle复制代码 代码如下: function checkBOM ($filename) { global $auto; $contents = file_get_contents($filename); $charset[1] = substr($contents, 0, 1); $charset[2] = substr($cont...
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn