您的当前位置:首页>全部文章>文章详情

php 将html转excel

mini胖发表于:2022-04-07 15:01:22浏览:1886次TAG: #PHP

直接贴代码

<?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("网址");