当前位置:首页 > PHP教程 > php高级应用 > 列表

使用CodeIgniter的类库做图片上传

发布:smiling 来源: PHP粉丝网  添加日期:2021-02-16 09:57:54 浏览: 评论:0 

CodeIgniter的文件上传类允许文件被上传。您可以设置指定上传某类型的文件及指定大小的文件。这篇文章主要介绍了使用CodeIgniter的类库做图片上传,需要的朋友可以参考下。

CodeIgniter的文件上传类允许文件被上传。您可以设置指定上传某类型的文件及指定大小的文件。

上传文件普遍的过程:

一个上传文件用的表单,允许用户选择一个文件并上传它。

当这个表单被提交,该文件被上传到指定的目录。

同时,该文件将被验证是否符合您设定的要求。

一旦文件上传成功,还要返回一个上传成功的确认窗口。

下面是表单:

  1. <form method="post" action="<?=base_url()?>admin/img_upload/" enctype="multipart/form-data" /> 
  2.  <div style="margin:0 0 0.5em 0em;"> 
  3.   <input type="file" name="userfile" size="20" class="button" /> 
  4.   <input type="submit" value=" 上传 " class="button" /> 
  5.  </div> 
  6. </form> 

然后是下面是上传类:

  1. public function img_upload() 
  2.  $this->load->helper('url'); 
  3.  
  4.  $config['upload_path'] = './images/'.date('Ym', time()).'/'
  5.  $config['allowed_types'] = 'gif|jpg|png'
  6.  $config['file_name'] = date('Y_m_d', time()).'_'.sprintf('%02d', rand(0,99)); 
  7.  $config['max_size'] = '500'
  8.  $config['max_width']  = '1024'
  9.  $config['max_height']  = '768'
  10.  
  11.  $this->load->library('upload'$config); 
  12.  
  13.  if ( !$this->upload->do_upload()) 
  14.    { 
  15.      $error = array('error' => $this->upload->display_errors()); 
  16.    } 
  17.  else 
  18.    { 
  19.      $data = array('upload_data' => $this->upload->data()); 
  20.    } 

需要用到的几个函数

$this->upload->do_upload():根据你的偏好配置参数执行操作。注意:默认情况下上传的文件来自于提交表单里名为userfile的文件域,并且该表单必须是 "multipart"类型。

$this->upload->display_errors():如果do_upload()返回失败,显示错误信息。此函数不会自动输出,而是返回数据,所以你可以按你的要求安排。

$this->upload->data():这是一个辅助函数,它返回你上传文件的所有相关信息的数组。

Tags: CodeIgniter

分享到: