作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要让用户能够更改个人资料图片,但我找不到明确的文档来通过演示演练来展示 CodeIgniter 上传过程的工作原理。
我已经在主表中创建了一个名为 user_profile
的列。
我是 Controller ,我定义大小、类型并对其进行加密。
public function update_profile(){
$config["upload_path"] = "public/images/profile";
$config["allowed_types"] = "jpg|jpeg|gif|png";
$config["max_size"] = 700;
$config["max_width"] = 1024;
$config["max_height"] = 768;
$config["encrypt_name"] = TRUE;
$this->load->library("upload", $config);
if($this->upload->do_upload('user_profile'))
{
$info_arquivo = $this->upload->data();
$user_profile = $info_arquivo["file_name"];
$this->load->model("profile_model");
$image_perfil = array(
"user_profile" => $user_profile
);
$query = $this->profile_model->insert_image($image_perfil);
if($query){
$this->session->set_flashdata('msg', 'Imagem de perfilfoi atualizada');
redirect(base_url('admin/dashboard'), 'refresh');
} else {
$this->session->set_flashdata('msg', 'Imagem de perfil não foi atualizada');
redirect(base_url('admin/profile'), 'refresh');
}
}
else
{
$this->session->set_flashdata('msg', 'Imagem de perfil não foi atualizada');
redirect(base_url('admin/profile'), 'refresh');
}
}
在admin/profile
View 中我放置了以下表单。
<!-- UPLOAD IMAGE USER -->
<?php echo form_open_multipart('admin/update_profile'); ?>
<div class="form-group">
<label>Selecione uma imagem</label>
<input type="file" name="user_profile" class="form-control" id="user_profile" required/>
</div>
<div class="form-group">
<button type="submit" class="btn btn-success pull-right" value="cadastrar">Cadastrar</button>
</div>
</form>
<!-- END UPLOAD IMAGE USER -->
在我的 Profile_model
模型中,我将文件名插入user_profile
列
class Profile_model extends CI_Model{
public function insert_image($user_profile)
{
$this->db->insert('ci_users', $user_profile);
return $this->db->affected_rows() ? TRUE : FALSE;
}
}
最佳答案
我认为您的表单 URL 错误。请在下面的 HTML 表单中添加 index.php
<!-- UPLOAD IMAGE USER -->
**<?php echo form_open_multipart('index.php/admin/update_profile'); ?>**
<div class="form-group">
关于php - 如何将图像保存在CodeIgniter根文件夹和数据库中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58734741/
我是一名优秀的程序员,十分优秀!