用PHP创建EXCEL文件,如何向其中不同的列写入数据


诸葛非卿
用PHP创建EXCEL文件,如何向其中不同的列写入数据
诸葛非卿 发表于 11-27 16:08 32分钟前, 0回/5阅 ( 编辑|删除 )
讨论区 » 技术问答

如题:我创建了EXCEL数据

header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:filename=ldata.xls");

并向其中写入数据,入下:

echo "test11\t";
echo "test12\t\n";
echo "test21\t";
echo "test22\t\n";
echo "test31\t";
echo "test32\t\n";

本来我是希望其中出现一张表格,但是里面的数据居然全部都在A1单元里面。

如何写入数据类似这种形式呢?

QQ截图20121127164323.jpg

php-excel php excel

樱高轻音部 11 years ago
<?php
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:filename=ldata.xls");

echo "A\tB\tC\t\n";
echo "1\t2\t4\t\n";
echo "12\t22\t42\t\n";
呆叔在呆弯 answered 11 years ago

Your Answer