Heim  >  Artikel  >  Backend-Entwicklung  >  2个Codeigniter文件批量上传控制器写法例子,codeigniter写法_PHP教程

2个Codeigniter文件批量上传控制器写法例子,codeigniter写法_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:22:14825Durchsuche

2个Codeigniter文件批量上传控制器写法例子,codeigniter写法

例子一:

/**
 * 多文件上传
 * 
 * @author Dream <dream@shanjing-inc.com>
 */
public function multiple_uploads() {
  //载入所需类库
  $this->load->library('upload');
  
  //配置上传参数
  $upload_config = array(
      'upload_path'  => '',
      'allowed_types' => 'jpg|png|gif',
      'max_size'   => '500',
      'max_width'   => '1024',
      'max_height'  => '768',
  );
  $this->upload->initialize($upload_config);
    
  //循环处理上传文件
  foreach ($_FILES as $key => $value) {
    if (!empty($key['name'])) {
      if ($this->upload->do_upload($key)) {
        //上传成功
        print_r($this->upload->data());
      } else {
        //上传失败
        echo $this->upload->display_errors();
      }
    }
  }
}

例子二:

function upload() {
    $config['upload_path'] = './uploads/'; 
    /*这里的uploads是相对于index.php的,也就是入口文件,这个千万不要弄错哦!
    否则就会报错"The upload path does not appear to be valid."; 
    */
    $config['allowed_types'] = 'gif|jpg|png';
    /*我试着去上传其它类型的文件,这里一定要注意顺序! 
    A problem was encountered while attempting to move the uploaded file to the final destination.
    这个错误一般是上传文件的文件名不能是中文名,这个很郁闷!还未解决,大家可以用其它方法,重新改一下文件名就可以解决了! 
    $config['allowed_types'] = 'zip|gz|png|gif|jpg';(正确)
    $config['allowed_types'] = 'png|gif|jpg|zip|gz';(错误)
    */
    $config['max_size'] = '1024';
    $config['max_width'] = '1024';
    $config['max_height'] = '768';

    $config['file_name'] = time(); //文件名不使用原始名
    $this->load->library('upload', $config);
    if(!$this->upload->do_upload()) {
        echo $this->upload->display_errors();
    }else{

       $data['upload_data']=$this->upload->data(); //文件的一些信息
       $img=$data['upload_data']['file_name']; //取得文件名

       echo $img."<br>";

       foreach($data['upload_data'] as $item => $value){
       echo $item.":".$value."<br>";

      }

    }
}

对于CodeIgniter访问的问题?

本地地址/CodeIgniter/index.php?/
本地地址/CodeIgniter/index.php?/welcome
本地地址/CodeIgniter/index.php?/welcome/
本地地址/CodeIgniter/index.php?/welcome/index
本地地址/CodeIgniter/index.php?/welcome/index/
试试加上?
 

codeigniter文件上传后得到的绝对路径

因为使用上传类你可以设置上传目录
所以这个时候其实你是知道直接目录的,那对应的存入数据库只要存储文件名称就可以了

如果目录是变动的(例如按年月日变动),因为也是你事先知道的,也可以组织好对应的相对路径存储到数据库

如果写在对应的配置文件中,即可当变量使用了
 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/848799.htmlTechArticle2个Codeigniter文件批量上传控制器写法例子,codeigniter写法 例子一: /** * 多文件上传 * * @author Dream dream@shanjing-inc.com */public function multiple_up...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn