php下载c

1.php下载中,不认识的类型比如zip,rar,rmvb等可以直接点击链接下载<a href="one.zip">one.zip</a>.

2.php下载中,文本和图片只有<a href="one.php">one.php</a>.的话那么会直接打开链接内容

3.php下载中,文本和图片的下载可以借用php文件作为中转,进行php中转的文件中头信息如下定义:  header("Content-Type:image/gif");

    header('Content-Disposition:attachment; filename="logo.gif"');

    header('Content-Lenth:'.filesize());

    readfile("logo.gif");

原文地址:https://www.cnblogs.com/yiluxiuxing/p/4067286.html