处理Excel导出并保存在所需位置

时间:2014-09-29 10:03:45

标签: php html phpexcel export-to-excel

我想扩展我的问题 Read php file using php file and excel export

如果我在Firefox中打开以下PHP文件,它会显示一条弹出消息,询问保存Excel文件的位置。 如果我在谷歌浏览器中打开该文件,它会在我的下载(C:驱动器)文件夹中自动保存而不会有任何弹出窗口。

    <?php
    $read_file = readfile("my_export_file.php");
    $file = 'test.xls';
    header("Content-type: application/vnd.ms-excel");
    header("Content-Disposition: attachment; filename=$file");
    echo $read_file;
    ?>

我想要的是:

  1. 将文件保存在C:/Data/test.xls
  2. 每当我运行文件时都不应该弹出,而应该保存在所需的位置。
  3. 我该怎么做?

0 个答案:

没有答案