//下载,添加响应头信息header('Content-type:application/octet-stream');header('Content-Disposition:attachment;filename="'.basename($file).'"');header('Content-Length:'.filesize($file));readfile($file);