直接贴代码
<?php header("Cache-Control:public"); header("Pragma:public"); header( "Content-Type: application/vnd.ms-excel; name='excel'" );///表示输出类型excel文件类型 header( "Content-type: application/octet-stream" );//表示二进制数据流常用于文件下载 header( "Content-Disposition: attachment; filename=".time()."调查问卷.xls");//下载弹框文件 ///以下三行代码使浏览器每次打开此页面时不会使用缓存下载上一个文件 header( "Cache-Control: must-revalidate, post-check=0, pre-check=0" ); header( "Pragma: no-cache" ); header( "Expires: 0" ); //https://s12.aconvert.com/convert/p3r68-cdx67/a274o-x4ypi.html echo file_get_contents("网址");