作者zhman (闲闲的人)
看板Web_Design
标题Re: [问题] [PHP] 供人下载档案的连结
时间Sun Aug 29 01:19:00 2004
※ 引述《springgod (≡27149≡陈春神)》之铭言:
: 请问该怎麽做
: 例如 http://123.123.123.123/download.php?f=1234
: 然後就可以下载某个档案(有可能是.zip .html 等各式的档案)
: 而直接出现下载的视窗 而不是用ie 开起来
: 请问我该怎麽做@@
$name=basename($name);
$type=mime_content_type($file);
header("Content-type:".$type);
header("Content-Disposition: attachment; filename=".$name);
readfile($file);
就一定会出现下载的提示,
而且只能另存新档.....
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.112.25.161
1F:推 superGA:推~ 220.135.162.76 08/29