利用php导出excel我们大多会直接生成.xls文件,这种方便快捷。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| function createtable($list,$filename){ header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:filename=".$filename.".xls");
$strexport="编号\t姓名\t性别\t年龄\r"; foreach ($list as $row){ $strexport.=$row['id']."\t"; $strexport.=$row['username']."\t"; $strexport.=$row['sex']."\t"; $strexport.=$row['age']."\r"; } $strexport=iconv('UTF-8',"GB2312//IGNORE",$strexport); exit($strexport); }
|
基于这个我们可以将方法封装一下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
protected function createtable($list,$filename,$header=array(),$index = array()){ header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:filename=".$filename.".xls"); $teble_header = implode("\t",$header); $strexport = $teble_header."\r"; foreach ($list as $row){ foreach($index as $val){ $strexport.=$row[$val]."\t"; } $strexport.="\r"; } $strexport=iconv('UTF-8',"GB2312//IGNORE",$strexport); exit($strexport); }
|
方法调用:
1 2 3 4
| $filename = '提现记录'.date('YmdHis'); $header = array('会员','编号','联系电话','开户名','开户行','申请金额','手续费','实际金额','申请时间'); $index = array('username','vipnum','mobile','checkname','bank','money','handling_charge','real_money','applytime'); $this->createtable($cash,$filename,$header,$index);
|
这种方式生成Excel文件,生成速度很快,但是有缺点是:
- 单纯的生成Excel文件,生成的文件没有样式,单元格属性(填充色,宽度,高度,边框颜色…)不能自定义。
- 生成的文件虽然可以打开,但是兼容性很差,每次打开,都会报一个警告。