使用CodeIgniter上传svg图像


Uploading svg image with CodeIgniter

我尝试使用CodeIgniter上传svg文件。

$config = array(
        'upload_path' => 'path',
        'allowed_types' => 'jpg|jpeg|png|svg|gif',
        'max_size' => 'size',
        'max_width' => 'width',
        'max_height' => 'height',
        'encrypt_name' => 'TRUE',
    );
    $this->load->library('upload', $config);
    if($this->upload->do_upload('image_file')) {
        echo 'Success';
    } else {
        echo $this->upload->display_errors();
    }

我在这个链接中读到了同样的问题在Codeigner中上传svg文件,但Codeigner仍然不允许文件类型

在我的例子中,php将文件标识为image/svg

我刚刚添加到我的config/mimes.php

'svg'   =>  array('image/svg+xml', 'application/xml', 'text/xml', 'image/svg'),