Das ist mein Frontend-Code:
<form action="" method="post"> <input type="file" name="image" class="input"> </form>
und Controller:
$upload_image = $_FILES['image']['name']; if ($upload_image) { $config['allowed_types'] = 'xml|docx|jpg|png|pdf|xlsx'; $config['max_size'] = '999999'; $config['upload_path'] = './assets/img/image/'; $this->load->library('upload', $config); if ($this->upload->do_upload('image')) { $new_image = $this->upload->data('file_name'); $this->db->set('image', $new_image); } else { echo $this->upload->display_errors(); } }
In $config kennt prog den gerade eingegebenen Dateityp, z. B. img docx usw. Wie kann ich den gerade eingegebenen Dateityp als $types erhalten?
pathinfo
是一个数组。我们可以检查目录名称、文件名、扩展名等。https://www.php.net/manual/en/function .pathinfo.php
如果您询问如何获取刚刚提交的文件的文件类型,这很简单,您只需使用