php更改檔案編碼為utf8的方法:先透過【file_get_contents】函數將檔案讀入一個字串中;然後透過iconv方法對該字串進行編碼轉換;最後將字串寫入檔案中即可。
推薦:《PHP影片教學》
php轉換檔編碼
$contents_before = file_get_contents($input); $contents_after = iconv('UCS-2','UTF-8',$contents_before); file_put_contents($input, $contents_after);
處理完了要注意,文件$input已經被改變了。
file_get_contents() 函數把整個檔案讀入一個字串中。
iconv — 字串依照要求的字元編碼來轉換;
file_put_contents() 函數把一個字串寫入檔案中。
以上是php如何更改檔案編碼為utf8的詳細內容。更多資訊請關注PHP中文網其他相關文章!