我使用 php 文件创建文件夹中所有 jpg 文件的 zip 存档,并使其可供下载。
这是脚本:
<?php
$zip = new ZipArchive;
$download = 'FileName.zip';
$zip->open($download, ZipArchive::CREATE);
foreach (glob("*.jpg") as $file) { /* Add appropriate path to read content of zip */
$zip->addFile($file);
}
$zip->close();
header('Content-Type: application/zip');
header("Content-Disposition: attachment; filename = $download");
header('Content-Length: ' . filesize($download));
header("Location: $download");
?>
我想知道是否可以使用 url 的一部分作为存档名称?我的网址如下所示:
https://www.example.com/data/pictures/album/
我希望存档名称为Pictures-Album-CustomText.zip
LEATH
元芳怎么了