原理主要是php代码生成excel文件,被输出内容以‘,’隔开,自动识别逗号符隔开的内容放入excel内不同的表格内,需要换行处加上转义符\n,输出内容涉及中文的需转化编码utf-8为gbk。
header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:attachment;filename=pay-".time().".xls"); header(‘Pragma: no-cache‘); header(‘Expires: 0‘); foreach ($datas as $val) { echo iconv(‘UTF-8‘,‘GBK//IGNORE‘,implode("\t",$val))."\n"; }
时间: 2024-10-19 10:54:05