php 生成Excel文件

文件头部:

     header('Cache-Control:no-cache, must-revalidate');

     header('Content-type:application/vnd.ms-excel');

     header("Content-Disposition:attachment;filename=".$_GET['fname'].".xls");

 

输出内空:

     echo "用户名\t手机号\tQQ\t用户收入\t上传数量\r\n"; //这儿作为Excel标题

你可能感兴趣的:(PHP)