PHP导出Excel方法

使用制表符、换行符的方法  
制表符”\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”;   
?>  
posted on 2011-06-01 21:44  网宗  阅读(635)  评论(2编辑  收藏  举报

糗乐网-糗事|乐事|天下事