PHP - 将textarea内容添加为zip格式为html

时间:2017-02-27 11:44:56

标签: javascript php html zip

我正在开发一个内部应用程序,用户上传一些图像,使用它们,最后将所有文件作为一个包下载。

我是PHP的初学者,因此找到了一个代码,可以创建上传图像的压缩文件。

<?php

$dir = 'uploads/';
$zip_file = 'file.zip';

// Get real path for our folder
$rootPath = realpath($dir);

// Initialize archive object
$zip = new ZipArchive();
$zip->open($zip_file, ZipArchive::CREATE | ZipArchive::OVERWRITE);

// Create recursive directory iterator
/** @var SplFileInfo[] $files */
$files = new RecursiveIteratorIterator(
    new RecursiveDirectoryIterator($rootPath),
    RecursiveIteratorIterator::LEAVES_ONLY
);

foreach ($files as $name => $file)
{
    // Skip directories (they would be added automatically)
    if (!$file->isDir())
    {
        // Get real and relative path for current file
        $filePath = $file->getRealPath();
        $relativePath = substr($filePath, strlen($rootPath) + 1);

        // Add current file to archive
        $zip->addFile($filePath, $relativePath);
    }
}

// Zip archive will be created only after closing object
$zip->close();


header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($zip_file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($zip_file));
readfile($zip_file);

?>

现在有一个textarea有一个代码。

我想将textarea的内容添加为压缩为HTML格式。

1 个答案:

答案 0 :(得分:0)

您应该将textarea的内容保存为$dir = 'uploads/';中单独的.HTML文件。为此,您可以使用file_put_contents方法(记住正确的文件路径)。创建ZIP后,您可以删除此文件。