崬城衞 发表于 2015-8-24 12:55:41

php 文件下载 重命名

  header("Content-type:application/octet-stream");
header("Accept-Ranges:bytes");
header("Content-Type:application/force-download");
header("Content-Disposition:inline;filename=".$filename);
header("Accept-Length:".filesize($File));
@readfile($File);//读取文件到输出缓存
页: [1]
查看完整版本: php 文件下载 重命名