博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
雷林鹏分享:codeigniter框架文件上传处理
阅读量:5749 次
发布时间:2019-06-18

本文共 1282 字,大约阅读时间需要 4 分钟。

  前几天介绍过CodeIgniter 框架input表单的重新填充,主要是针对text、radio、checkbox、select等input表单,那么对于文件上传表单file该如何处理呢?

  自己的处理方式:

  //设置文件上传属性

  $webroot = $_SERVER['DOCUMENT_ROOT'];

  $time = time();

  $year = date('Y', $time);

  $month = date('m', $time);

  $day = date('d', $time);

  $subpath = "/goods/coverimage/{$year}/{$month}/{$day}/";

  $path = $webroot . '/uploads' . $subpath;

  if(!file_exists($path))

  {

  mkdir($path, 0777, true);

  }

  $config['upload_path'] = $path;

  $config['allowed_types'] = 'jpg|gif|png';

  $config['file_name'] = date('YmdHis', $time) . mt_rand(100, 999);

  $this->load->library('upload', $config);

  if($this->upload->do_upload('coverimage'))

  {

  $file = $this->upload->data();

  $data['image0'] = $subpath . $file['orig_name'];

  if($this->goods_model->add_goods($data))

  {

  $this->success(base_url() . 'admin.php?c=goods', '添加商品成功', 2);

  }

  }

  else //图片上传失败

  {

  $msg = array();

  $msg['file_error'] = strip_tags($this->upload->display_errors());

  $this->view('goods/modify', $msg);

  }

  从上面的代码可以看到用到了图片上传的3个函数:

  $this->upload->do_upload('coverimage')

  $this->upload->data()

  $this->upload->display_errors()

  通过判断图片是否上传成功,来控制获取图片信息或输出相应的错误信息。

  文章转载自 [http://www.php230.com]

  (编辑:雷林鹏 来源:网络 侵删)

转载于:https://www.cnblogs.com/linpeng1/p/10838147.html

你可能感兴趣的文章
Java 栈与堆简介
查看>>
【supervisord】部署单进程服务的利器
查看>>
zabbix oracle监控插件orabbix部署安装
查看>>
python3 通过qq 服务器 发送邮件
查看>>
java 多线程踩过的坑
查看>>
性能优化
查看>>
ggplot2 geom相关设置—点重合处理(jitter)
查看>>
部署Replica Sets及查看相关配置
查看>>
倒序显示数组(从右往左)
查看>>
STL学习笔记-- queue
查看>>
关于unity rect的坑
查看>>
LeetCode2_Evaluate Reverse Polish Notation评估逆波兰表达式(栈)
查看>>
文献综述二:UML技术在行业资源平台系统建模中的应用
查看>>
阿里云服务器 linux下载 jdk
查看>>
Swift 学习 用 swift 调用 oc
查看>>
第三章 Python 的容器: 列表、元组、字典与集合
查看>>
struct timeval
查看>>
微信小程序开发 -- 点击右上角实现转发功能
查看>>
问题解决-Failed to resolve: com.android.support.constraint:constraint-layout:1.0.0-alpha7
查看>>
openURL的使用
查看>>