PHP导出Excel方法
时间:2011-06-01 来源:网宗
使用制表符、换行符的方法
制表符”\t”用户分割同一行中的列,换行符”\t\n”可以开启下一行。
<?php header(”Content-Type: application/vnd.ms-execl”); header(”Content-Disposition: attachment; filename=myExcel.xls”); header(”Pragma: no-cache”); header(”Expires: 0″); /*first line*/ echo “hello”.”\t”; echo “world”.”\t”; echo “\t\n”; /*start of second line*/ echo “this is second line”.”\t”; echo “Hi,pretty girl”.”\t”; echo “\t\n”; ?>
相关阅读 更多 +