繁体   English   中英

标头内容长度不起作用

[英]Header Content-length not working

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

header('Content-Length: ');

即使我将其设置为

header('Content-Length: 15444544545');

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

编辑:更多代码:

$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>";

编辑:解决方案

服务器出现问题

您可以这样尝试:

$mm_type="application/octet-stream";

header("Cache-Control: public, must-revalidate");
header("Pragma: hack");
header("Content-Type: " . $mm_type);
header("Content-Length: " .(string)(filesize($fullpath)) );
header('Content-Disposition: attachment; filename="'.$filename.'"');
header("Content-Transfer-Encoding: binary\n");

readfile($fullpath);

base_url()错误用法。

您的文件存储在哪里?

也许您可以尝试使用常量FCPATH而不是调用函数base_url()

并且文件大小存储在$file_data['filesize']

最后应该没有行echo "<script>window.close();</script>"; 输出文件内容时,在您的PHP脚本中。

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

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

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

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

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

如果您的CodeIgniter版本没有download_helper,请自行创建...有关完整说明,请参阅CI文档。 有force_download功能代码:

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);
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM