我有一个html文件"sample.html"
我需要通过点击页面中的按钮让用户下载此文件。
如何使用php
使html文件可下载答案 0 :(得分:4)
简单地说,您需要读取文件,设置正确的标题并回显文件。
header('Content-disposition: attachment; filename=' . $file_name);
header('Content-type: ' . $file_mime);
$file_content = file_get_contents($file_location);
echo $file_content;
将按钮链接到PHP文件,然后瞧。
答案 1 :(得分:1)
<?php
$output_file = "example_name.html";
header('Pragma: no-cache"');
header('Expires: 0');
header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: pre-check=0, post-check=0, max-age=0');
header('Content-Transfer-Encoding: none');
//This should work for IE & Opera
header('Content-Type: application/octetstream; name="' . $output_file . '"');
//This should work for the rest
header('Content-Type: application/octet-stream; name="' . $output_file . '"');
header('Content-Disposition: inline; filename="' . $output_file . '"');
include "your_html_file.html";
exit();
?>
答案 2 :(得分:-1)
您可以使用document.documentElement.outerHTML获取页面的HTML源代码,然后使用FileSystemObject(或其他一些等效的api)将其保存到磁盘。您需要低安全性设置才能在没有提示的情况下使其正常工作。
这是一个简单的java脚本(IE特定):
function SaveToDisk(sPath)
{
var fso = new ActiveXObject("Scripting.FileSystemObject");
var fileDest = fso.CreateTextFile(sPath, true);
if (fileDest)
{
fileDest.Write(document.documentElement.outerHTML);
fileDest.close();
}
}
答案 3 :(得分:-1)
你可以像这样创建一个页面
// definisco una variabile con il percorso alla cartella // in cui sono archiviati i file $dir = "/root/www/download/"; // Recupero il nome del file dalla querystring // e lo accodo al percorso della cartella del download $file = $dir . $_GET['filename']; // verifico che il file esista if(!file) { // se non esiste chiudo e stampo un errore die("Il file non esiste!"); }else{ // Se il file esiste... // Imposto gli header della pagina per forzare il download del file header("Cache-Control: public"); header("Content-Description: File Transfer"); header("Content-Disposition: attachment; filename= " . $file); header("Content-Transfer-Encoding: binary"); // Leggo il contenuto del file readfile($file); }
然后你可以调用它传递文件名
force-download.php?filename=sample.html