我正在尝试在 Codeigniter 中上传 svg 类型的文件。但是我无法使用上传库中内置的 codeigniters 来做到这一点。我试图通过在 conig > mimes.php 文件中添加这一行来做到这一点
'svgz' => 'image/svg+xml',
'svg' => 'image/svg+xml',
但仍然没有解决方案。我收到此错误 -
The filetype you are attempting to upload is not allowed.
这是我的代码
$dir = 'uploads/svg/';
$this->load->library('upload');
$config['file_name'] = $result . '.svg';
$config['upload_path'] = $dir;
$config['allowed_types'] = 'image/svg+xml';
$this->load->library('upload');
$this->upload->initialize($config);
$this->upload->do_upload();
任何人都可以帮助我吗?
提前致谢