php简单导出excel

$file_type = "vnd.ms-excel"; // excel表头固定写法 
$file_ending = "xls"; // excel表的后缀名 
header("Content-Type: application/$file_type"); 
header("Content-Disposition: attachment; filename=list.$file_ending"); // agentfile导出的表名 
header("Pragma: no-cache"); // 缓存 header("Expires: 0"); 
echo mb_convert_encoding("姓名","GBK","utf-8")." \t ".mb_convert_encoding("年龄","GBK","utf-8")." \t ".mb_convert_encoding("时间","GBK","utf-8");
 print("\n"); //循环数据~ 换行就print("\n"); 
exit();


关于字符的设定,还是要看具体情况了。

这样就好了。基本上,定义好mimetype,输出内容。就会自动下载成excel,不要用下载工具。(根据百度知道修改)

你可能感兴趣的:(PHP,File,Excel,header,encoding,下载工具)