熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP 過濾頁面中的BOM(實現代碼)

2022-06-13   來源: PHP編程 
本篇文章是對PHP中過濾頁面中的BOM的實現代碼進行了詳細的分析介紹需要的朋友參考下   復制代碼 代碼如下:

  
function checkBOM ($filename) {
$contents = file_get_contents($filename);
$charset[] = substr($contents );
$charset[] = substr($contents );
$charset[] = substr($contents );
if (ord($charset[]) == && ord($charset[]) == && ord($charset[]) == ) {
$rest = substr($contents );
rewrite $rest;
}else{
return false;
}
}


From:http://tw.wingwit.com/Article/program/PHP/201311/21072.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.