php讀取txt檔中文亂碼解決方法

來源:互聯網
上載者:User
關鍵字 網路程式設計 PHP教程

1:如果打開的頁面有亂碼,別急,先不要做任何編輯。 切記。
2:然後點擊功能表修改-》頁面屬性-》標題/編碼
3:在編碼裡選擇 簡體中文(gb2321)
4:點擊 重新載入-》確定

新建一個記事本(不是寫字板哦! ),然後將那個要讀取的檔全部複製到這個記事本檔中,保存。 再用如下代碼讀取那個記事本檔1303275.txt:發現當網頁編碼為gb2312時全部正常顯示。 改為utf8編碼後,數位正常,漢字為亂碼,這也屬於正常

<?php教程
$file = fopen("1303275.txt","r");//唯讀方式打開文字檔
while(! feof($file))//當檔不結束
{
$line=fgets($file);//讀一行到$line變數
echo $line." <br />";
}
fclose($file);//關閉文字檔

?>
上面的方法比較笨但也解決問題,下面我提供一個不管什麼txt文本都不會亂的解決方法.

/*
@params $str 輸入字元 $type 所需獲取編碼
@author 長行
*/
function autoiconv($str,$type = "gb2312//ignore"){

$utf32_big_endian_bom = chr(0x00) . chr(0x00) . chr(0xfe) . chr(0xff);
$utf32_little_endian_bom = chr(0xff) . chr(0xfe) . chr(0x00) . chr(0x00);
$utf16_big_endian_bom = chr(0xfe) . chr(0xff);
$utf16_little_endian_bom = chr(0xff) . chr(0xfe);
$utf8_bom = chr(0xef) . chr(0xbb) . chr(0xbf);

$first2 = substr($str, 0, 2);
$first3 = substr($str, 0, 3);
$first4 = substr($str, 0, 3);

if ($first3 == $utf8_bom) $icon = 'utf-8';
elseif ($first4 == $utf32_big_endian_bom) $icon = 'utf-32be';
elseif ($first4 == $utf32_little_endian_bom) $icon = 'utf-32le';
elseif ($first2 == $utf16_big_endian_bom) $icon = 'utf-16be';
elseif ($first2 == $utf16_little_endian_bom) $icon = 'utf-16le';
else { $icon = 'ascii'; return $str;}

return iconv($icon,$type,$str);

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.