如何使用Codeigniter上传图像文件? Codeigniter's Upload class Library
没有提示如何使用简单的表单上传图像,并将图像上传到根目录中的图像文件夹...
提前致谢..
答案 0 :(得分:4)
这是一个例子。所以不要通过复制代码直接使用它。请使用CI documentations了解更多详情。希望这会对你有所帮助:)。
在您的控制器中。让我们说upload.php
public function upload() {
if($this->input->post('upload')) {
$config['upload_path'] = APPPATH . 'your upload folder name here/';
$config['file_name'] = filename_here;
$config['overwrite'] = TRUE;
$config["allowed_types"] = 'jpg|jpeg|png|gif';
$config["max_size"] = 1024;
$config["max_width"] = 400;
$config["max_height"] = 400;
$this->load->library('upload', $config);
if(!$this->upload->do_upload()) {
$this->data['error'] = $this->upload->display_errors();
} else {
//success
}
}
}
然后在你看来
<?php echo form_open_multipart('upload'); ?>
<?php echo form_upload('userfile'); ?><br />
<?php echo form_submit('upload', 'Upload');?>
<?php echo form_close(); ?>