91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

使用PHP遞歸函數對目錄進行壓縮打包

PHP
小樊
97
2024-04-26 20:33:53
欄目: 編程語言

以下是一個使用PHP遞歸函數對目錄進行壓縮打包的示例代碼:

<?php

function zipDirectory($source, $destination)
{
    if (!extension_loaded('zip') || !file_exists($source)) {
        return false;
    }

    $zip = new ZipArchive();
    if (!$zip->open($destination, ZIPARCHIVE::CREATE)) {
        return false;
    }

    $source = str_replace('\\', '/', realpath($source));

    if (is_dir($source) === true) {
        $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST);

        foreach ($files as $file) {
            $file = str_replace('\\', '/', $file);

            if (in_array(substr($file, strrpos($file, '/') + 1), array('.', '..'))) {
                continue;
            }

            $file = realpath($file);

            if (is_dir($file) === true) {
                $zip->addEmptyDir(str_replace($source . '/', '', $file . '/'));
            } else if (is_file($file) === true) {
                $zip->addFromString(str_replace($source . '/', '', $file), file_get_contents($file));
            }
        }
    } else if (is_file($source) === true) {
        $zip->addFromString(basename($source), file_get_contents($source));
    }

    return $zip->close();
}

// 用法示例
$source = '/path/to/sourceDirectory';
$destination = '/path/to/destinationArchive.zip';

if (zipDirectory($source, $destination)) {
    echo 'Directory successfully compressed and packed into ' . $destination;
} else {
    echo 'Failed to compress directory';
}

請確保在執行此代碼之前已經安裝了PHP的Zip擴展。您可以將$source替換為您要打包的目錄的路徑,將$destination替換為打包文件的保存路徑。執行代碼后,將會將目錄壓縮打包成一個zip文件。

0
永嘉县| 唐河县| 梅河口市| 谢通门县| 西昌市| 陆良县| 嵊州市| 丰镇市| 台北市| 迭部县| 陆川县| 张北县| 沈丘县| 台南县| 尚志市| 罗山县| 象州县| 买车| 武夷山市| 昌吉市| 寿宁县| 麻城市| 舟曲县| 托克逊县| 突泉县| 晋江市| 彭泽县| 鹤壁市| 芦溪县| 明水县| 吴桥县| 报价| 凤冈县| 柘荣县| 抚宁县| 澄江县| 濮阳市| 苗栗市| 焦作市| 沙雅县| 城市|