codeigniter - 更改下载文件名 codeigniter

标签 codeigniter

在强制下载之前转换文件名。

我试图在下载之前将存储的文件名转换为原始文件名

因此,当用户单击要下载的文件而不是显示时

post_1486965530_jeJNHKWXPMrwRpGBYxczIfTbaqhLnDVO.php

如下图所示

它只会重命名下载的文件,例如

config.php

enter image description here

Question how to only change the downloaded filename when click on image.

public function downloads($id) {
    $this->db->where('attachment_id', $id);
    $query = $this->db->get('attachments');

    if ($query->num_rows() == 0) {
       return false;
    }

    $path = '';
    $file = '';

    foreach ($query->result_array() as $result) {

        $path .= FCPATH . 'uploads/'; 

        // This gives the stored file name
        // This is folder 201702
        // Looks like 201702/post_1486965530_jeJNHKWXPMrwRpGBYxczIfTbaqhLnDVO.php

        $stored_file_name .= $result['attachment_name']; 

        // Out puts just example "config.php"
        $original .= $result['file_name']; 

    }

    force_download($path . $stored_file_name, NULL);
}

最佳答案

那怎么样 (恕我直言,你的 foreach 循环没有任何意义)

public function downloads($id) {
    $this->db->where('attachment_id', $id);
    $query = $this->db->get('attachments');

    if ($query->num_rows() == 0) {
       return false;
    }

    $path = '';
    $file = '';

    foreach ($query->result_array() as $result) {

        $path .= FCPATH . 'uploads/'; 

        // This gives the stored file name
        // This is folder 201702
        // Looks like 201702/post_1486965530_jeJNHKWXPMrwRpGBYxczIfTbaqhLnDVO.php

        $stored_file_name .= $result['attachment_name']; 

        // Out puts just example "config.php"
        $original .= $result['file_name']; 

    }

    force_download("your_filename.txt",file_get_contents($path . $stored_file_name));
}

关于codeigniter - 更改下载文件名 codeigniter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42220785/

相关文章:

mysql - 我应该在哪里添加 codeigniter 模型中的 where 子句?

php - Codeigniter 中的图像提交按钮 - 我缺少什么?

php - jQuery 和 Ci 未正确处理注销功能

php - 代码点火器 : how to write where_in OR where_in query?

php - Codeigniter SQL 查询语法

mysql - 如何在忽略数据库中列的默认值的情况下发布表单数据

php - 仅播放音频的 video/mp4 类型的 HTML5 视频

mysql - 不断收到与数据库的失败连接

php - 嵌套 mysql 查询在 codeigniter 中不起作用

php - CodeIgniter:开发和生产环境