php生成excel文件的简单方法

前端之家收集整理的这篇文章主要介绍了php生成excel文件的简单方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

生成excel 当然使用的是 PHPExcel这个类库了,可是它太麻烦了,对于只要简单生成来说有点不值得 什么叫简单,把数据库的数据导入到excel就行了,这个就是简单了 下面看一段代码(代码来自网络) 注意要双引号的字符串
<div class="codetitle"><a style="CURSOR: pointer" data="40688" class="copybut" id="copybut40688" onclick="doCopy('code40688')"> 代码如下:

<div class="codebody" id="code40688">
<?PHP
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:filename=test.xls");
echo "test1\t";
echo "test2\t\n";
echo "test1\t";
echo "test2\t\n";
echo "test1\t";
echo "test2\t\n";
echo "test1\t";
echo "test2\t\n";
echo "test1\t";
echo "test2\t\n";
echo "test1\t";
echo "test2\t\n";
?>

运行就会下载test.xls这个文件,打开以后他是这样的
<IMG src="https://files.jb51.cc/file_images/article/201402/201402081601231.gif?20141816142"&gt;

原文链接:https://www.f2er.com/php/25161.html

猜你在找的PHP相关文章