用PHP創(chuàng)建EXCEL文件,如何向其中不同的列寫入數(shù)據(jù)如題:我創(chuàng)建了EXCEL數(shù)據(jù)header("Content-type:application/vnd.ms-excel");header("Content-Disposition:filename=ldata.xls");并向其中寫入數(shù)據(jù),入下:echo "test11\t";echo "test12\t\n";echo "test21\t";echo "test22\t\n";echo "test31\t";echo "test32\t\n";本來我是希望其中出現(xiàn)一張表格,但是里面的數(shù)據(jù)居然全部都在A1單元里面。
2 回答

白衣染霜花
TA貢獻(xiàn)1796條經(jīng)驗 獲得超10個贊
<?phpheader("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";
- 2 回答
- 0 關(guān)注
- 132 瀏覽
添加回答
舉報
0/150
提交
取消