了解php中下载的文件位置

时间:2013-05-02 21:16:28

标签: php file security

我在download.php文件中有这段代码:

$file = //path to file (for example .xlsx file)
if (file_exists($file)) {
        header('Content-Description: File Transfer');
        header('Content-Type: application/vnd.ms-excel');
        header('Content-Disposition: attachment; filename=file.xlsx');
        header('Content-Transfer-Encoding: binary');
        header('Expires: 0');
        header('Cache-Control: must-revalidate');
        header('Pragma: public');
        header('Content-Length: ' . filesize($file));
        readfile($file);
        exit;
    }

因此,如果打开site.com/download.php,则会下载excel文件。

我的问题是:

不知何故,下载程序可以理解服务器上下载的xlsx文件位置是什么?或者这是不可能的?

1 个答案:

答案 0 :(得分:4)

没有。客户端将不知道excel文件来自服务器的何处。

您可以实时生成它或从其他站点抓取它或从文件加载。没办法说出来。