PHP 怎么样导出到EXCEL的代码,可以如下写法,如果帮到你的话,请采纳我的答案:
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:attachment;filename=test_data.xls");
//输出内容如下:
echo "姓名"."\t";
echo "年龄"."\t";
echo "学历"."\t";
echo "\n";
echo "张三"."\t";
echo "25"."\t";
echo "本科"."\t";
?>
上面输出的内容,你可以从数据库上调用出来。