如果我理解正确,这应该可以满足您的要求:
首先将您的 HTML 更新为:
<form method="POST" action="dl-file.php">
<select id="filename" name="filename">
<option value="file1.pdf">File 1</option>
<option value="file2.pdf">File 2</option>
<option value="file3.pdf">File 3</option>
<option value="file4.pdf">File 4</option>
<option value="file5.pdf">File 5</option>
</select>
<input type="submit" value="Download" class="grey-btn" />
</form>
然后在 HTML 文件所在的同一目录中创建一个新文件,并将其命名为dl-file.php并将其放入其中:
<?php
// Put any files you don't want the user to download here
$exclude_files = array('.htaccess', '.DS_STORE', '.htpasswd');
// full path to the download directory
$download_directory = 'C:\xampp\htdocs\test\filedlselect/downloads/';
$file_to_download = filter_input(INPUT_POST, 'filename', FILTER_SANITIZE_STRING);
$full_path = $download_directory . $file_to_download;
if (!in_array($file_to_download, $exclude_files) &&
file_exists( $full_path ) && is_readable( $full_path )) {
header('Pragma: public');
header('Expires: 0');
header('Cache-control: must-revalidate, post-check=0, pre-check=0');
header('Last-modified: ' . gmdate('D, d M Y H:i:s', filemtime($full_path)) . 'GMT');
header('Cache-control: private', false);
header('Content-type: application/force-download');
header('Content-disposition: attachment; filename="' . basename($full_path) . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($full_path));
header('Connection: close');
readfile($full_path);
exit;
} else {
die('invalid file');
}
?>
第三,编辑$download_directory
以包含该文件夹在硬盘驱动器上的确切/downloads/
位置。或者,您可以将文件添加到$exclude_files
阵列中。