35 lines
939 B
PHP
35 lines
939 B
PHP
<?php
|
|
# http://stackoverflow.com/a/4914807/5690568
|
|
// Get real path for our folder
|
|
$rootPath = realpath('xlsx_tmp');
|
|
|
|
// Initialize archive object
|
|
$zip = new ZipArchive();
|
|
$zip->open('resulting_excel/test.xlsx', 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();
|
|
|
|
exec('rm -R xlsx_tmp/*');
|
|
?>
|