用php生成excel和word文档

用php生成excel和word文档
<?
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”;
?>
只需改动相应文件头就可以输出.doc .xls等文件格式

滚动至顶部