header
【禁止缓存】
<?php header("Expires:-1"); header("Cache-Control:no-cache"); header("Pragma:no-cache"); ?>
【文件下载】
<?php //返回的文件 header("Content-type:application/octet-stream"); //按照字节大小返回 header("Accept-Ranges:bytes"); //返回文件大小 header("Accept-Length:$file_size"); //这里客户端的弹出对话框,对应的文件名 header("Content-Disposition:attachment;filename=".$file_name); ?>