标头内容长度不起作用 [英] Header Content-length not working

查看:75
本文介绍了标头内容长度不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在下载文件,但之前已经对其进行了重命名。一切正常,除了大小。我无法设置文件大小

I'm doing file download with renaming it before. Everything works except size. I can't set file size with

header('Content-Length: ');

即使我将其设置为

header('Content-Length: 15444544545');

它不起作用。我正在使用PHP codeigniter框架,问题出在哪里?

it's not working. I'm using PHP codeigniter framework, where is the problem?

编辑:更多代码:

$file_data = array(
        'originalName' => $post_info['file_info'][0]['original_name'],
        'fakeName' => $post_info['file_info'][0]['file_name'],
        'modificationId' => $post_info['file_info'][0]['modification_article_id'],
        'extension' => end(explode('.', $post_info['file_info'][0]['original_name'])),
        'name' => str_replace(".".end(explode('.', $post_info['file_info'][0]['original_name'])), "", $post_info['file_info'][0]['original_name']),
        'filesize' => filesize($post_info['file_info'][0]['file_name'])
    );

    header('Cache-Control: public');
    header('Content-Description: File Transfer');
    header('Content-Disposition: attachment; filename=' . $file_data['name'] . '.' . $file_data['extension']);
    header('Content-Length: ' . filesize(base_url().$file_data['fakeName']));
    // Read file
    readfile(base_url().$file_data['fakeName']);

    //print_r($file_data);

    echo "<script>window.close();</script>";

编辑:解决方案

有一个服务器问题

推荐答案

您尝试过使用download_helper? Sintax: force_download($ filename,$ data)
同样在您的代码中,您正在通过URL阅读文件。请改用文件系统路径。
来自控制器操作:

You tried with download_helper?? Sintax: force_download($filename, $data). Also in your code you're reading file through URL. Use file system path instead. From controller action:

<?php
public function download()
{
    //Your code here...
    $filePath = realpath(FCPATH.DIRECTORY_SEPARATOR.'uploads/myfile.pdf'); //FakeName????
    force_download($file_data['fakeName'], readfile($filePath)); 
}

如果我的解决方案不起作用,请给我个提示,以其他方式告诉您

If my solution don't works give me a touch to give you other way.

注意 FCPATH 是前端控制器路径,服务器的公共文件夹例如(/ var / www / CodeIgniter)。其他路径常量已经在index.php(前端控制器)上定义。

Note: FCPATH is the front controller path, a public folder of server e.g.(/var/www/CodeIgniter). Other path constants are already defined on index.php (front-controller).

打印 $ file_data ['fakeName'] 会很有用。

如果您的CodeIgniter版本没有download_helper,请自己制作...有关完整说明,请参阅CI文档。有force_download函数代码:

If your CodeIgniter version don't have download_helper make your own... refer to CI docs for full explanation. There is the force_download function code:

function force_download($filename = '', $data = '')
{
    if ($filename == '' OR $data == '')
    {
            return FALSE;
    }

    // Try to determine if the filename includes a file extension.
    // We need it in order to set the MIME type
    if (FALSE === strpos($filename, '.'))
    {
            return FALSE;
    }

    // Grab the file extension
    $x = explode('.', $filename);
    $extension = end($x);

    // Load the mime types
    if (defined('ENVIRONMENT') AND is_file(APPPATH.'config/'.ENVIRONMENT.'/mimes.php'))
    {
        include(APPPATH.'config/'.ENVIRONMENT.'/mimes.php');
    }
    elseif (is_file(APPPATH.'config/mimes.php'))
    {
        include(APPPATH.'config/mimes.php');
    }

    // Set a default mime if we can't find it
    if ( ! isset($mimes[$extension]))
    {
        $mime = 'application/octet-stream';
    }
    else
    {
        $mime = (is_array($mimes[$extension])) ? $mimes[$extension][0] : $mimes[$extension];
    }

    // Generate the server headers
    if (strpos($_SERVER['HTTP_USER_AGENT'], "MSIE") !== FALSE)
    {
        header('Content-Type: "'.$mime.'"');
        header('Content-Disposition: attachment; filename="'.$filename.'"');
        header('Expires: 0');
        header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
        header("Content-Transfer-Encoding: binary");
        header('Pragma: public');
        header("Content-Length: ".strlen($data));
    }
    else
    {
        header('Content-Type: "'.$mime.'"');
        header('Content-Disposition: attachment; filename="'.$filename.'"');
        header("Content-Transfer-Encoding: binary");
        header('Expires: 0');
        header('Pragma: no-cache');
        header("Content-Length: ".strlen($data));
    }

    exit($data);
}

这篇关于标头内容长度不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆