Codeigniter PHP 多图片上传
1、HTML <!-- 调用PHP 的一个方法--> <iframe frameborder="0" height="90px" width="560px" src="<?=base_url();?>common/show_mul_img" name="imgiframe" id="imgiframe" ></iframe> <p class='case_list'> <p id="show_img"></p><!--图片就在这个p里面显示--> </p> 2、CSS /**多图片显示区**/ .case_list{margin:15px 20px;_margin:15px;} .case_list ul{background:#fff;width:190px;height:170px;float:left;padding:10px;margin:12px;border:1px solid #dddddd;} .case_list li {color:#f55205;font-size:12px;font-weight:bold;} .case_list li.t{background: url(../images/t.jpg) left center no-repeat;padding:5px;padding-left:10px;} .case_list li a{color:#f55205;line-height:16px;} .case_list .li img{width:190px;height:135px;} 3、common.php 控制类 // 跳转到上传页面 public function show_mul_img(){ $datas["imgName"]=""; $this->_img_mul_view($datas); } function _img_mul_view($datas=array()){ $this->load->view("comm_page/mul_upImg",$datas); } //多图片上传,保存操作 public function do_mulupImg(){ $datas["img_lst"]=$this->mytool->update_mul_obj(mymsg::DIR_MULIMG); $this->_img_mul_view($datas); } 4、mytool.php工具类 //2012-9-6,多图片上传时触发 function update_mul_obj($filename,$name="userfile"){ $CI = &get_instance(); $CI->load->library('upload'); return $CI->upload->do_mul_upload($filename,$name); } # 在这里扩展了CI自带的upload方法,做了一个多图片上传工能 5、MY_upload.php 扩展实现 upload类 class MY_Upload extends CI_Upload{ public function __construct(){ parent::__construct(); } function do_mul_upload($filename,$field = 'userfile'){ $CI = &get_instance(); $count=count($_FILES["$field"]["name"]);//页面取的默认名称 $this->upload_path= $CI->mytool->get_obj_path($filename);//保存的路径 $this->set_allowed_types("gif|jpg|png");//支持的图片格式 $bh = $CI->session->userdata("bh");//登录的当前用户 $file_arr=array(); for($i=0;$i<$count;$i++){ // Give it a name not likely to already exist! $pseudo_field_name = '_psuedo_' . $field . '_' . $i; $_FILES[$pseudo_field_name] = array('name' => $_FILES[$field]['name'][$i], 'size' => $_FILES[$field]['size'][$i], 'type' => $_FILES[$field]['type'][$i], 'tmp_name' => $_FILES[$field]['tmp_name'][$i], 'error' => $_FILES[$field]['error'][$i] ); if ($CI->upload->do_upload($pseudo_field_name)) { //默认名是:userfile $data = $CI->upload->data(); $in_data=array(); $in_data["name"]= $data['file_name'];//文件名 $in_data["path"]="$filename/$bh";//保存的路径 $file_arr[]=$in_data; } } return$file_arr; } } 6、上传页面 mul_upImg.php <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <script type="text/javascript" src="<?=base_url()?>js/jquery.js?1.1.6" ></script> </head> <body> <?=form_open("common/do_mulupImg",array('enctype'=>"multipart/form-data"))?> <table> <tr> <td><input type="file" name="userfile[]" id="userfile" onchange="this.form.submit();" multiple="multiple" /></td> <!--multiple:IE娘的不支持,支持此属性的可以多图片上传--> <td></td> </tr> </table> </form> <script type="text/javascript"> <?php if(!empty($img_lst)){?> var h_t=""; <?php for($i=0;$i<count($img_lst);$i++){?> h_t=h_t+"<ul><li class='li'><img alt='<?=$img_lst[$i]['name']?>' width='120px' height='60px' src='<?=base_url()?>/import/<?=$img_lst[$i]['path']?>/<?=$img_lst[$i]['name']?>'/></li>" +"<li class='t'>" +"<input type='hidden' name='name[]' value='<?=$img_lst[$i]['name']?>'/>" +"<input type='hidden' name='path[]' value='<?=$img_lst[$i]['path']?>'/>" +"<input type='radio' name='mrz[]' value='<?=$img_lst[$i]['name']?>'/>默认首图" +"</ul></li>" <?}?> //h_t=h_t+""; $obj=$("#show_img",window.parent.document); $obj.html($obj.html()+h_t); <?php }?> </script> </body> </html>
2. [图片] google.png
3. [图片] IE.png
以上就是Codeigniter PHP 多图片上传 的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to implement custom middleware in CodeIgniter Introduction: In modern web development, middleware plays a vital role in applications. They can be used to perform some shared processing logic before or after the request reaches the controller. CodeIgniter, as a popular PHP framework, also supports the use of middleware. This article will introduce how to implement custom middleware in CodeIgniter and provide a simple code example. Middleware overview: Middleware is a kind of request

CodeIgniter Middleware: Accelerating Application Responsiveness and Page Rendering Overview: As web applications continue to grow in complexity and interactivity, developers need to use more efficient and scalable solutions to improve application performance and responsiveness. . CodeIgniter (CI) is a lightweight PHP-based framework that provides many useful features, one of which is middleware. Middleware is a series of tasks that are performed before or after the request reaches the controller. This article will introduce how to use

Introduction to the method of using the database query builder (QueryBuilder) in the CodeIgniter framework: CodeIgniter is a lightweight PHP framework that provides many powerful tools and libraries to facilitate developers in web application development. One of the most impressive features is the database query builder (QueryBuilder), which provides a concise and powerful way to build and execute database query statements. This article will introduce how to use Co

CodeIgniter is a lightweight PHP framework that uses MVC architecture to support rapid development and simplify common tasks. CodeIgniter5 is the latest version of the framework and offers many new features and improvements. This article will introduce how to use the CodeIgniter5 framework to build a simple web application. Step 1: Install CodeIgniter5 Downloading and installing CodeIgniter5 is very simple, just follow these steps: Download the latest version

As web applications continue to evolve, it is important to develop applications more quickly and efficiently. And, as RESTful API is widely used in web applications, it is necessary for developers to understand how to create and implement RESTful API. In this article, we will discuss how to implement MVC pattern and RESTful API using CodeIgniter framework. Introduction to MVC pattern MVC (Model-Vie

CodeIgniter middleware: Provides secure file upload and download functions Introduction: In the process of web application development, file upload and download are very common functions. However, for security reasons, handling file uploads and downloads often requires additional security measures. CodeIgniter is a popular PHP framework that provides a wealth of tools and libraries to support developers in building secure and reliable web applications. This article will introduce how to use CodeIgniter middleware to implement secure files

With the development of mobile Internet, instant messaging has become more and more important and popular. For many companies, live chat is more like a communication service, providing a convenient communication method that can quickly and effectively solve business problems. Based on this, this article will introduce how to use the PHP framework CodeIgniter to develop a real-time chat application. Understand the CodeIgniter framework CodeIgniter is a lightweight PHP framework that provides a series of simple tools and libraries to help developers quickly

In today's Internet era, a website that is loved by users must have a simple and clear front-end interface and a powerful back-end management system, and the PHP framework CodeIgniter is an excellent framework that allows developers to quickly build a back-end management system. CodeIgniter has the characteristics of lightweight, high efficiency, and easy expansion. This article will be aimed at beginners and explain in detail how to quickly build a backend management system through this framework. 1. Installation and configuration Installation of PHPCodeIgniter is a PHP-based
