Php Excel文件下载,可读格式

时间:2014-04-03 14:23:01

标签: php excel file import export-to-excel

我试图在php中实现excel文件下载。 我已经尝试了下面的代码文件下载。

ob_start();

echo "Hi This is Input! ";
header("Content-Type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=test.xls");
header("Pragma: no-cache");
header("Cache-Control: public");

ob_flush();

excel文件下载似乎很好。但下载的excel文件无法上传php excel阅读器2.当我试图上传test.xls文件时,似乎出现以下错误信息

test.xml is not readable in excel_reader2.php

我想使用Excel阅读器2导入excel文件。

是我错过的任何内容或我在代码中出错的任何内容

任何帮助很多赞赏。

0 个答案:

没有答案