>  기사  >  백엔드 개발  >  php服务器 提示下载功能解决思路

php服务器 提示下载功能解决思路

WBOY
WBOY원래의
2016-06-13 13:29:30916검색

php服务器 提示下载功能
我这里是PC端做服务器,现在别的电脑访问我这里,需要提示下载功能,怎么实现呢?

好像是在index.php里写下载吧?完全没这方面的经验,不知道该怎么做。

我加了这一段

PHP code
<!--

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");

?>



然后该怎么做呢?

------解决方案--------------------
然后在别的电脑上访问这个页面呀
------解决方案--------------------
直接用html代码做个链接不行吗?
------解决方案--------------------
filename=aa.rar //这里要取个名字。不然会形成rar 文件。
------解决方案--------------------
PHP code

#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>
探讨

我在LocalSettings.php上加了这3行代码:
PHP code

header("Content-type:application/rar");

header("Content-Disposition:attachment;filename=SQLite.rar");

readfile("E:\ziptest\SQLite.rar");


登录首页的时候,有下载提示,但是……
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.