Home Backend Development PHP Tutorial 关于一次上传多个图片的插件有没有?解决方法

关于一次上传多个图片的插件有没有?解决方法

Jun 13, 2016 am 10:25 AM
data files name quot

关于一次上传多个图片的插件有没有?
像discuz发帖那样,一次上传多个图片,然后将所有上传的图片路径插入到编辑器中。

有没有?

------解决方案--------------------
找个JS批量上传插件,主要是美观而已,技术角度还是个表单。

从http协议实现角度,下面的php代码是一个活生生的协议细节:

PHP code
<?php function do_post_request($url, $postdata, $files = null) {     $data = "";     $boundary = "---------------------".substr(md5(rand(0,32000)), 0, 10);            //Collect Postdata     foreach($postdata as $key => $val)     {         $data .= "--$boundary\n";         $data .= "Content-Disposition: form-data; name=\"".$key."\"\n\n".$val."\n";     }          $data .= "--$boundary\n";         //Collect Filedata     foreach($files as $key => $file)     {         $fileContents = file_get_contents($file['tmp_name']);                 $data .= "Content-Disposition: form-data; name=\"{$key}\"; filename=\"{$file['name']}\"\n";         $data .= "Content-Type: image/jpeg\n";         $data .= "Content-Transfer-Encoding: binary\n\n";         $data .= $fileContents."\n";         $data .= "--$boundary--\n";     }       $params = array('http' => array(            'method' => 'POST',            'header' => 'Content-Type: multipart/form-data; boundary='.$boundary,            'content' => $data         ));    $ctx = stream_context_create($params);    $fp = fopen($url, 'rb', false, $ctx);       if (!$fp) {       throw new Exception("Problem with $url, $php_errormsg");    }      $response = @stream_get_contents($fp);    if ($response === false) {       throw new Exception("Problem reading data from $url, $php_errormsg");    }    return $response; } //set data (in this example from post) //sample data $postdata = array(     'name' => $_POST['name'],     'age' => $_POST['age'],     'sex' => $_POST['sex'] ); //sample image $files['image'] = $_FILES['image']; do_post_request("http://example.com", $postdata, $files); ?><br><font color="#e78608">------解决方案--------------------</font><br>swfopload<br><font color="#e78608">------解决方案--------------------</font><br>在学习PHP中可能会遇到PHP上传多张图片问题,上传图片需要对图片格式的校验,保证上传的一定是图片,防止上传其他文件到服务器。多图片上传基本实现方法是使用数组的形式,把所有的图片提交个一个数组,对数组的元素进行一个个循环的处理。下面是PHP多图片上传的代码示例:<br><br>1.<?php   <br />2.//图片目录 <br>3.$img_dir="../upload/"; <br>4.//……html显示上传界面 <br>5./*图片上传处理*/ <br>6.//把图片传到服务器 <br>7.//初始化变量 <br>8.$uploaded=0; <br>9.$unuploaded=0; <br>10.//只允许五张图片上传 <br>11.for($i=0;$i12.{ <br>13.//获取当前图片的信息 <br>14.$is_file=$_FILES['imgfile']['name'][$i]; <br>15.//如果当前图片不为空 <br>16.if(!empty($is_file)) <br>17.{ <br>18.//把当前图片的信息存储到变量里 <br>19.$result[$i]=" <br>20.<trclasstrclass>  <br>21.<td>".$_FILES['imgfile']['name'][$i]."</td>  <br>22.<td>".round($_FILES['imgfile']['size'][$i]/1024,2)."K</td>  <br>23.<td>".$_FILES['imgfile']['type'][$i]."</td>  <br>24.<td>"; <br>25.//判断上传的图片的类型是不是jpg,gif,png,bmp中的一种,同时判断是否上传成功 <br>26.if( <br>27.$_FILES['imgfile']['type'][$i]=="image/pjpeg"|| <br>28.$_FILES['imgfile']['type'][$i]=="image/gif"|| <br>29.$_FILES['imgfile']['type'][$i]=="image/x-png"|| <br>30.$_FILES['imgfile']['type'][$i]=="image/bmp" <br>31.) <br>32.{ <br>33.//如果上传的文件没有在服务器上存在 <br>34.if(!file_exists($img_dir.$_FILES['imgfile']['name'][$i])) <br>35.{ <br>36.//把图片文件从临时文件夹中转移到我们指定上传的目录中 <br>37.move_uploaded_file($_FILES['imgfile']['tmp_name'][$i], <br>38.$img_dir.$_FILES['imgfile']['name'][$i]); <br>39.$result[$i].="成功"; <br>40.$uploaded++; <br>41.} <br>42.else//如果文件已经在服务器上存在 <br>43.{ <br>44.$result[$i].="<fontcolor>文件已存在";<div class="clear">
                 
              
              
        
            </div></fontcolor>
</td></trclasstrclass>
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use Files function in Java for file operations How to use Files function in Java for file operations Jun 26, 2023 pm 04:21 PM

In the Java programming language, it is often necessary to perform operations such as reading, writing, copying, and deleting files. Java provides a set of functions of the Files class to perform file operations. This article will introduce how to use the Files function in Java for file operations. Import the required packages. Before performing file operations, you must first import Java's io package and nio package: importjava.io.File;importjava.io.IOException;import

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

what files are what files are Dec 20, 2023 pm 02:11 PM

"Files" itself is not a specific file type, but a general concept.

What data is in the data folder? What data is in the data folder? May 05, 2023 pm 04:30 PM

The data folder contains system and program data, such as software settings and installation packages. Each folder in the Data folder represents a different type of data storage folder, regardless of whether the Data file refers to the file name Data or the extension. Named data, they are all data files customized by the system or program. Data is a backup file for data storage. Generally, it can be opened with meidaplayer, notepad or word.

What to do if mysql load data is garbled? What to do if mysql load data is garbled? Feb 16, 2023 am 10:37 AM

The solution to the garbled mysql load data: 1. Find the SQL statement with garbled characters; 2. Modify the statement to "LOAD DATA LOCAL INFILE "employee.txt" INTO TABLE EMPLOYEE character set utf8;".

File system operations using the new Files and Path classes in Java 11 File system operations using the new Files and Path classes in Java 11 Jul 30, 2023 pm 10:25 PM

File system operations using the new Files and Path classes in Java 11 Java 11 introduces a number of new classes and features, including improvements to file system operations. The new Files class and Path class provide a more convenient and flexible file operation method, allowing us to process files and directories more easily. Before Java11, we usually used the java.io.File class to operate files and directories. However, the functionality of this class is relatively limited and not flexible enough. Java

What are the differences between xdata and data What are the differences between xdata and data Dec 11, 2023 am 11:30 AM

The differences are: 1. xdata usually refers to independent variables, while data refers to the entire data set; 2. xdata is mainly used to establish data analysis models, while data is used for data analysis and statistics; 3. xdata is usually used for regression Analysis, variance analysis, predictive modeling, data can be analyzed using various statistical methods; 4. xdata usually requires data preprocessing, and data can contain complete original data.

10 Best Practices for Manipulating Files in Java 10 Best Practices for Manipulating Files in Java Feb 27, 2024 pm 07:07 PM

In Java, file operations are a common task of working with data files stored in the file system. To perform these tasks effectively and efficiently, following best practices ensures that your code is readable, maintainable, and robust. This article introduces the top 10 best practices for manipulating files in Java to help developers improve the quality of their code and avoid common mistakes. Use Path and NIO.Path instead of File. //Use the Path class to operate files Pathpath=Paths.get("my-file.txt");Files.readAllBytes(path);//Use the nio.Path class to operate files java.nio.file.Pathpa

See all articles