Created
July 20, 2018 17:46
-
-
Save heiswayi/454a287f5bbc14f4ac409713c18748ae to your computer and use it in GitHub Desktop.
Example of PHP script I used to zip a folder and then force download the zipped file when this script is visited thru web browser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$dir = 'inescov1'; | |
$zip_file = 'inescov1.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); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment