2

我正在尝试使用 PHP 在客户端计算机上强制下载(带有文件对话框 - 没什么险恶的)。我发现很多页面都建议我使用 header() 函数来控制我的 PHP 脚本的响应,但我没有运气。我的代码如下:

$file = $_POST['fname'];

if(!($baseDir . '\\AgcommandPortal\\agcommand\\php\\utils\\ISOxml\\' . $file)) {
    die('File not found.');
} else {
    header('Pragma: public');
    header('Content-disposition: attachment; filename="tasks.zip"');
    header('Content-type: application/force-download');
    header('Content-Length: ' . filesize($file));
    header('Content-Description: File Transfer');
    header('Content-Transfer-Encoding: binary');
    header('Connection: close');
    ob_end_clean();
    readfile($baseDir . '\\AgcommandPortal\\agcommand\\php\\utils\\ISOxml\\' . $file);
}

我使用这个 JavaScript 调用它:

        $.ajax({
            url: url,
            success: function(text) {
                var req = new XMLHttpRequest();
                req.open("POST", 'php/utils/getXMLfile.php', true);
                req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
                req.send('fname=' + encodeURIComponent(text));
            }
        });

这会将文件的内容作为文本返回,但不会触发下载对话框。有没有人有什么建议?

4

4 回答 4

6

无需使用 AJAX,只需将浏览器重定向到相关 URL。当它收到content-disposition:attachment标头时,它将下载文件。

于 2012-08-06T21:51:34.830 回答
1

几点建议:

1.

if(!($baseDir . '\\AgcommandPortal\\agcommand\\php\\utils\\ISOxml\\' . $file)) {

反而:

if(!file_exists($baseDir ....)){

2.不需要尺寸。

3.试试这个:

 header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($fullpath));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    ob_clean();
    flush();
    readfile($fullpath);
    exit;
于 2012-08-06T21:53:20.163 回答
0

我会尝试像这样从 PHP 发送标头来替换您的application/force-download标头:

header("Content-type: application/octet-stream");
于 2012-08-06T21:53:59.680 回答
0

Kolink 的回答对我有用(将窗口位置更改为 php 文件),但由于我想随请求一起发送 POST 变量,我最终改用隐藏表单。我正在使用的代码如下:

                var url = 'php/utils/getXMLfile.php';
                var form = $('<form action="' + url + '" method="post" style="display: none;">' +
                    '<input type="text" name="fname" value="' + text + '" />' +
                    '</form>');
                $('body').append(form);
                $(form).submit();

感谢所有的答案!

于 2012-08-07T14:08:02.683 回答