gpt4 book ai didi

php - CodeIgniter 文件上传类 - 初始化不同的配置文件

转载 作者:行者123 更新时间:2023-12-02 07:44:25 24 4
gpt4 key购买 nike

所以我一直在谷歌搜索这个问题,似乎找不到答案。

据我所知,这段代码:$this->upload->initialize() 使用 upload.php 配置文件初始化 CI 文件上传类。我想要做的是使用不同的文件。

我尝试了 $this->upload->initialize('upload_other'),但这似乎不起作用。我知道您可以在 Controller 中设置一个 $config 数组,但我正在努力避免这种情况。

这可能吗?我是不是以错误的方式处理这个问题?

最佳答案

您不能像这样初始化/覆盖配置。

你可以初始化

$this->config->load('upload');
-- Some code Here --

$this->config->load('upload_other');
-- Some code Here --

或者您可以按如下方式按数组进行。

$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '100';
$config['max_width'] = '1024';
$config['max_height'] = '768';

$this->load->library('upload', $config);

// Alternately you can set preferences by calling the initialize function. Useful if you auto-load the class:
$this->upload->initialize($config);

如果您想同时上传另一个文件,您可以更改配置数组。

$config2['upload_path'] = './uploads/small/';
$config2['allowed_types'] = 'gif|jpg|png';
$config2['max_size'] = '100';
$config2['max_width'] = '100';
$config2['max_height'] = '100';

$this->load->library('upload', $config2);

// Alternately you can set
$this->upload->initialize($config2);

更新

您可以在配置文件中指定您的一般数据。说

config['width'] = '100';

config['width2'] = '100';

现在在你的 Controller 中使用

config['width'] = $this->config->item('width');

config2['width'] = $this->config->item('width2');

这样您就可以重复使用相同的设置。

关于php - CodeIgniter 文件上传类 - 初始化不同的配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8062527/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com