php如何轉換檔案編碼

2020-10-07 18:00:40

php轉換檔案編碼的方法:使用函數【str_replace】轉換檔案編碼到新資料夾,程式碼為【$newPath = str_replace(THIS_PATH, THIS_PATH . DS . Cover, $v)】。

php轉換檔案編碼的方法:

程式碼

<?php
define('THIS_FILE', __FILE__); // 此檔案路徑,請勿修改,將跳過此檔案
define('THIS_PATH', dirname(THIS_FILE)); // 當前路徑,可修改
define('Cover', 'new'); // 是否直接覆蓋本檔案(改為 true 不加單引號,危險),建議寫入其他地址(相對於當前路徑)
define('DS', DIRECTORY_SEPARATOR); // Linux改為'/',Windows為'\\'
define('ICONV', 'UTF-8'); // 最終轉換編碼格式
function eachFile($path, $files = [])
{
    if (Cover !== true && $path == THIS_PATH . DS . Cover) {
        return $files;
    }
    if (preg_match("/[\x7f-\xff]/", $path)) {
        $path = iconv('UTF-8', 'GBK', $path);
    }
    if (is_file($path)) {
        $files[] = $path;
        return $files;
    }
    $list = scandir($path);
    foreach ($list as $k => $v) {
        if ($v !== '.' && $v !== '..') {
            $p = $path . DS . $v;
            // 路徑轉碼GBK
            if (preg_match("/[\x7f-\xff]/", $p)) {
                $p = iconv('UTF-8', 'GBK', $p);
            }
            if (is_dir($p)) {
                $files = eachFile($p, $files);
            } else {
                $files[] = $p;
            }
        }
    }
    return $files;
}
$files = eachFile(THIS_PATH);
foreach ($files as $k => $v) {
    $ext = pathinfo($v, PATHINFO_EXTENSION);
    if (in_array($ext, ['txt', 'php', 'css', 'js', 'htm', 'html'])) {
        if ($v == THIS_FILE) continue;
        // 獲取內容並轉碼
        $contents_before = file_get_contents($v);
        $oldIconv = mb_detect_encoding($contents_before, array('ASCII', 'GB2312', 'GBK', 'UTF-8', 'BIG5'));
        $contents_after = iconv($oldIconv, ICONV, $contents_before);
        if (Cover !== true) {
            // 判斷新資料夾是否存在
            $newPath = str_replace(THIS_PATH, THIS_PATH . DS . Cover, $v);
            if (!file_exists(dirname($newPath))) {
                mkdir(dirname($newPath), 0755, true);
            }
            // 覆蓋寫入檔案(不存在自動建立)
            file_put_contents($newPath, $contents_after);
        } else {
            file_put_contents($v, $contents_after);
        }
        // 輸出
        echo "{$v} 已轉換<hr>";
    } else {
        $newPath = str_replace(THIS_PATH, THIS_PATH . DS . Cover, $v);
        if (Cover !== true && !file_exists($newPath)) {
            if (!file_exists(dirname($newPath))) {
                mkdir(dirname($newPath), 0755, true);
            }
            copy($v, $newPath);
            echo "{$v} 複製檔案到新路徑 {$newPath}<hr>";
        }
    }
}

功能

  • 自定義資料夾

  • 跳過本檔案(同一資料夾)及新資料夾(多次轉碼)

  • 檔案格式限制

  • 轉換檔案編碼到新資料夾(推薦)或本檔案

  • 複製無需轉碼檔案到新資料夾

注意

  • 暫未在Linux上測試

  • 只能轉碼文字檔案

相關免費學習推薦:(視訊)

以上就是php如何轉換檔案編碼的詳細內容,更多請關注TW511.COM其它相關文章!