您现在的位置: 万盛学电脑网 >> 程序编程 >> 网络编程 >> php编程 >> 正文

php生成excel文件的简单方法

作者:佚名    责任编辑:admin    更新时间:2022-06-22

 生成excel文件,最简单的莫过于把数据库的数据导入到excel就行了,下面有个不错的示例,大家可以参考下

生成excel 当然使用的是 phpExcel这个类库了,可是它太麻烦了,对于只要简单生成来说有点不值得    什么叫简单,把数据库的数据导入到excel就行了, 这个就是简单了    下面看一段代码(代码来自网络)    注意要双引号的字符串   代码如下: <?php  header("Content-type:application/vnd.ms-excel");  header("Content-Disposition:filename=test.xls");  echo "test1t";  echo "test2tn";  echo "test1t";  echo "test2tn";  echo "test1t";  echo "test2tn";  echo "test1t";  echo "test2tn";  echo "test1t";  echo "test2tn";  echo "test1t";  echo "test2tn";  ?>