У меня есть скрипт, который должен (по порядку):
- создать папку в
sys_get_temp_dir()
и поместить в нее некоторые файлы (сделано в строке exec()
) - zip-папка и ее содержимое
- принудительная загрузка на стороне клиента
Я успешно пробовал шаги 1 и 3 по отдельности, но изо всех сил пытался заставить шаг 2 работать.
Вот мой скрипт (ниже получаемой ошибки):
<?php
$tmpdir = sys_get_temp_dir();
$outdir = "download";
$format = "ESRI Shapefile";
$folderToZip = $tmpdir . DIRECTORY_SEPARATOR . $outdir;
$command = "ogr2ogr -f $format $folderToZip WFS:\"https://www.wondermap.it/cgi-bin/qgis_mapserv.fcgi?&map=/home/ubuntu/qgis/projects/Demo_sci_WMS/demo_sci.qgs&SERVICE=WFS&VERSION=1.1.0&REQUEST=GetFeature&typename=domini_sciabili&bbox=544138,5098446,564138,5108446\" --config GDAL_HTTP_UNSAFESSL YES";
exec($command);
// Initialize archive object
$zip = new ZipArchive();
$zipFile = "download.zip";
$zip->open($zipFile, ZipArchive::CREATE | ZipArchive::OVERWRITE);
// Create recursive directory iterator
/** @var SplFileInfo[] $files */
$files = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator($folderToZip),
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($folderToZip) + 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=" . $zipFile);
readfile ($zip);
exit();
?>
Я получаю ошибку:
Fatal error: Uncaught exception 'UnexpectedValueException' with message 'RecursiveDirectoryIterator::__construct(C:\Users\MINORA~1.ONE\AppData\Local\Temp\download,C:\Users\MINORA~1.ONE\AppData\Local\Temp\download): Impossibile trovare il percorso specificato.
Warning: Unknown: Cannot destroy the zip context in Unknown on line 0