如何使用CodeIgniter将上传的文件存储到文件夹中? [英] How to store uploaded file into folder using CodeIgniter?

查看:46
本文介绍了如何使用CodeIgniter将上传的文件存储到文件夹中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用CodeIgniter将上传文件存储到文件夹中?

How to store upload file into folder using CodeIgniter?

推荐答案

请确保您的gallery文件夹必须与应用程序文件夹名称gallery一起位于根目录中

Please Be sure with your gallery folder it must be in root alongside with application folder name gallery

$config['upload_path']='./gallery/';
$config['allowed_types']='gif|png|jpeg|jpg';
$config['max_size']='100';
$config['max_width']='1024';
$config['max_height']='700';
$this->upload->initialize($config);
$this->upload->do_upload('upload_photo');

这篇关于如何使用CodeIgniter将上传的文件存储到文件夹中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆