LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1207|回复: 1

问个php文件下载的问题

[复制链接]
发表于 2006-8-31 10:42:43 | 显示全部楼层 |阅读模式
在mozilla,firefox,opera上下载没有什么问题,可是在 IE上就有问题。在前三个浏览器上下载时保存会自动为所下载的文件名,可在IE下却为所调用的php脚本。

以下是php的代码

<?php
$dl_file=$upload.$file;
$base=basename($dl_file);

if(file_exists($dl_file)){
     header("Content-type: application/octet-stream");
     header("Content-Transfer-Encoding: Binary");
     header("Content-length: ".filesize($dl_file));
     header("Content-disposition: attachment; filename=".$base);
     readfile($dl_file);
     echo $dl_file;
  }
else{
     echo "No file selected";
     }
?>
发表于 2006-9-4 11:01:31 | 显示全部楼层
你的windows为文件扩展名设置了关联程序
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表