当您使用 PHP 强制下载时,您可以filename=
在Content-Disposition
标头中使用来动态设置下载的文件名。
下载_zip.php
$actual_file_name = '/var/yourserver/file.zip';
$download_file_name = substr(str_replace(array('\\/|>< ?%\"*'), '_', $_GET['title'] . '.zip'), 0, 255);
$mime = 'application/zip';
header('Pragma: public');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Cache-Control: private', false);
header('Content-Type: ' . $mime);
header('Content-Disposition: attachment; filename="'. $download_file_name .'"'); // Set it here!
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($actual_file_name));
header('Connection: close');
readfile($actual_file_name);
exit();
要获取最后一页的页面标题,最简单的方法可能是将标题作为$_GET
变量传递到下载链接中。从带有下载链接的页面:
<a href="http://yoursite.com/download_zip.php?title=The+Page+You+Were+Just+On">Download Zip File With This Page's Title</a>
这将要求您在链接中包含页面标题,因此要避免在两个位置更新页面标题,请尝试使用$page_title
变量。在带有下载链接的页面中:
<?php
$page_title = 'Page Title';
?>
<html>
<head>
<title><?= $page_title ?></title>
</head>
<body>
<a href="http://yoursite.com/download_zip.php?title=<?= urlencode($page_title) ?>">Download Zip File With This Page's Title</a>
</body>
</html>