我有一个文件file.magicExt
,它只是一个文本文件(utf-8),例如:
hello
我有index.php
:
<?php
echo '<a href="file.magicExt">file</a>';
当用户点击“文件”链接时,我想要显示“打开方式”对话框。
相反浏览器(Firefox,Chrome)显示文件内容。
答案 0 :(得分:0)
我完成了file.php
:
<?php
// We'll be outputting a .magicExt
header('Content-Type: application/magicExt');
// It will be called downloaded.magicExt
header('Content-Disposition: attachment; filename="downloaded.magicExt"');
// The .magicExt source is in original.magicExt
readfile('original.magicExt');
和index.php
:
echo '<a href="file.php">file</a>';