溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

php代碼如何去掉bom

發(fā)布時(shí)間:2022-10-24 16:14:17 來源:億速云 閱讀:117 作者:iii 欄目:編程語言

本篇內(nèi)容介紹了“php代碼如何去掉bom”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

php代碼掉bom的方法:1、使用“function clearbom($contents){...}”方式去掉文本中的bom頭;2、通過“function checkBOM ($filename) {...}”方法檢測(cè)并去掉bom頭;3、通過“function SearchBOM($string) {...}”方法搜索當(dāng)前文件是否有BOM并去除即可。

php 代碼怎么去掉bom?

PHP批量去掉utf8格式文件中的bom頭部

我經(jīng)常使用txt文本編輯器寫php文件,所以經(jīng)常會(huì)自動(dòng)添加bom頭部,導(dǎo)致在很多時(shí)候會(huì)帶來問題,比如我們session無法工作、cookie無法設(shè)置等等問題。

下面我整理了幾個(gè)利用php程序清除 utf8格式文件中的bom頭部方法。

例1

代碼如下

/**
* 去掉文件中的 bom頭
* @var 0.1
* @author Chenwp
*/
function clearbom($contents){
//UTF8 去掉文本中的 bom頭
$BOM = chr(239).chr(187).chr(191);
return str_replace($BOM,”,$contents);
}



/**
* 去掉文件中的bom頭
* @param object $fileName Description
* @return object    Description
*/
function clearfilebom($fileName){
$c = file_get_contents($fileName);
$c = clearbom($c);
file_put_contents($fileName,$c);
}

例2

如何將帶有BOM文件的格式轉(zhuǎn)換成無簽名的UTF-8格式文件呢?下面分享給大家一段PHP代碼:

代碼如下

<?php
//此文件用于快速測(cè)試UTF8編碼的文件是不是加了BOM,并可自動(dòng)移除

$basedir=”.”; //修改此行為需要檢測(cè)的目錄,點(diǎn)表示當(dāng)前目錄
$auto=1; //是否自動(dòng)移除發(fā)現(xiàn)的BOM信息。1為是,0為否。

//以下不用改動(dòng)

if ($dh = opendir($basedir)) {
while (($file = readdir($dh)) !== false) {
if ($file!=’.’ && $file!=’..’ && !is_dir($basedir.”/”.$file)) echo “filename: $file “.checkBOM(“$basedir/$file”).” <br>”;
}
closedir($dh);
}

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 (“<font color=red>BOM found, automatically removed.</font>”);
} else {
return (“<font color=red>BOM found.</font>”);
}
}
else return (“BOM Not Found.”);
}

function rewrite ($filename, $data) {
$filenum=fopen($filename,”w”);
flock($filenum,LOCK_EX);
fwrite($filenum,$data);
fclose($filenum);
}
//結(jié)束
?>

例3

會(huì)自動(dòng)掃描所有子目錄和文件

代碼如下

<?php
// 設(shè)定你要清除BOM的根目錄(會(huì)自動(dòng)掃描所有子目錄和文件)
$HOME = dirname(__FILE__);
// 如果是Windows系統(tǒng),修改為:$WIN = 1;
$WIN = 0;
?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<title>UTF8 BOM 清除器</title>
<style>
body { font-size: 10px; font-family: Arial, Helvetica, sans-serif; background: #FFF; color: #000; }
.FOUND { color: #F30; font-size: 14px; font-weight: bold; }
</style>
</head>
<body>
<?php
$BOMBED = array();
RecursiveFolder($HOME);
echo ‘<h3>These files had UTF8 BOM, but i cleaned them:</h3><p>’;
foreach ($BOMBED as $utf) { echo $utf .”<br />n”; }
echo ‘</p>’;
// 遞歸掃描
function RecursiveFolder($sHOME) {
global $BOMBED, $WIN;
$win32 = ($WIN == 1) ? “\” : “/”;
$folder = dir($sHOME);
$foundfolders = array();
while ($file = $folder->read()) {
if($file != “.” and $file != “..”) {
if(filetype($sHOME . $win32 . $file) == “dir”){
$foundfolders[count($foundfolders)] = $sHOME . $win32 . $file;
} else {
$content = file_get_contents($sHOME . $win32 . $file);
$BOM = SearchBOM($content);
if ($BOM) {
$BOMBED[count($BOMBED)] = $sHOME . $win32 . $file;
// 移出BOM信息
$content = substr($content,3);
// 寫回到原始文件
file_put_contents($sHOME . $win32 . $file, $content);
}
}
}
}
$folder->close();
if(count($foundfolders) > 0) {
foreach ($foundfolders as $folder) {
RecursiveFolder($folder, $win32);
}
}
}
// 搜索當(dāng)前文件是否有BOM
function SearchBOM($string) {
if(substr($string,0,3) == pack(“CCC”,0xef,0xbb,0xbf)) return true;
return false;
}
?>
</body>
</html>

“php代碼如何去掉bom”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI