php服务器 提示下载功能
我这里是PC端做服务器,现在别的电脑访问我这里,需要提示下载功能,怎么实现呢?
好像是在index.php里写下载吧?完全没这方面的经验,不知道该怎么做。
我加了这一段
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?php header("Content-type:application/rar");header("Content-Disposition:attachment;filename=.rar");readfile("E:\ziptest\2.1.1-b8.rar");?>
#down.php$file = 'ASDFGgg.pdf';_Download("files_dir/".$file, $file);function _Download($f_location,$f_name){ header ("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Length: ' . filesize($f_location)); header('Content-Disposition: attachment; filename=' . basename($f_name)); readfile($f_location); }<br><font color="#e78608">------解决方案--------------------</font><br>