codeingitor 如何允许.bmp 文件上传?

codeingitor how to allow .bmp file to upload?

我想允许上传 .bmp 文件格式

这是我的代码:

            $config = [];
            $config['file_name'] = $filename;
            $config['upload_path'] = $dir;
            $config['allowed_types'] = 'jpg|jpeg|png|gif|bmp|pdf';
            $config['max_size'] = '10000';

            $this->upload->initialize($config);               
            $fileData = $this->upload->data();

但错误如不允许您尝试上传的文件类型

您可以添加

$mimes = array('bmp' => array('image/bmp', 'image/x-windows-bmp', 'image/x-ms-bmp'))

在 application/config/mimes.php