php导出excel(转)
在index.php文件中,添加一个连接,导出excel。
test1.php文件如下:
Header("Content-type: application/octet-stream");
Header("Accept-Ranges: bytes");
Header("Content-type:application/vnd.ms-excel");
Header("Content-Disposition:attachment;filename=export_excel_gshjsl.xls");
$tx='表头';
echo $tx."nn";
echo "编号"."t";
echo "姓名"."t";
echo "n";
echo "="411481198507150666""."t";
echo "="0123456""."t"; //带上引号方便字符串输出。相当如设置单元格格式为文本。
echo "n";
?>
顺便把简单导出word文档的代码贴到这里:
header("Content-Type: application/msword");
header("Content-Disposition: attachment; filename=doc.doc");
header("Pragma: no-cache");
header("Expires: 0");
$output = '
| 图片 |
| 下面是一张图片 |
| $output .= ' |
echo $output;
?>



