php文件多上传文件,php文件上传(多文件上传)

http://www.cnblogs.com/itcx/p/4209034.html

upload.php

class File_upload{

public $upload_path='./upload/';//上传文件的路径

public $allow_type=array();//允许上传的文件类型

public $max_size='20480';//允许的最大文件大小

public $overwrite=false;//是否设置成覆盖模式

public $renamed=false;//是否直接使用上传文件的名称,还是系统自动命名

/**

* 私有变量

*/

private $upload_file=array();//保存上传成功文件的信息

private $upload_file_num=0;//上传成功文件的数目

private $succ_upload_file=array();//成功保存的文件信息

/**

* 构造器

*

* @param string $upload_path

* @param string $allow_type

* @param string $max_size

*/

public function __construct($upload_path='./upload/',$allow_type='jpg|bmp|png|gif|jpeg',$max_size='204800')

{

$this->set_upload_path($upload_path);

$this->set_allow_type($allow_type);

$this->max_size=$max_size;

$this->get_upload_files();

}

/**

* 设置上传路径,并判定

*

* @param string $path

*/

public function set_upload_path($path)

{

if(file_exists($path)){

if(is_writeable($path)){

$this->upload_path=$path;

}else{

if(@chmod($path,'0666'))

$this->upload_path=$path;

}

}else{

if(@mkdir($path,'0666')){

$this->upload_path=$path;

}

}

}

//设置上传文件类型

public function set_allow_type($types){

$this->allow_type=explode("|",$types);

}

//上传文件

public function get_upload_files()

{

foreach ($_FILES AS $key=>$field)

{

$this->get_upload_files_detial($key);

}

}

//上传文件数据存放到数组中

public function get_upload_files_detial($field){

if(is_array($_FILES["$field"]['name']))

{

for($i=0;$i

{

if(0==$_FILES[$field]['error'][$i])

{

$this->upload_file[$this->upload_file_num]['name']=$_FILES[$field]['name'][$i];

$this->upload_file[$this->upload_file_num]['type']=$_FILES[$field]['type'][$i];

$this->upload_file[$this->upload_file_num]['size']=$_FILES[$field]['size'][$i];

$this->upload_file[$this->upload_file_num]['tmp_name']=$_FILES[$field]['tmp_name'][$i];

$this->upload_file[$this->upload_file_num]['error']=$_FILES[$field]['error'][$i];

$this->upload_file_num++;

}

}

}

else {

if(0==$_FILES["$field"]['error'])

{

$this->upload_file[$this->upload_file_num]['name']=$_FILES["$field"]['name'];

$this->upload_file[$this->upload_file_num]['type']=$_FILES["$field"]['type'];

$this->upload_file[$this->upload_file_num]['size']=$_FILES["$field"]['size'];

$this->upload_file[$this->upload_file_num]['tmp_name']=$_FILES["$field"]['tmp_name'];

$this->upload_file[$this->upload_file_num]['error']=$_FILES["$field"]['error'];

$this->upload_file_num++;

}

}

}

/**

* 检查上传文件是构满足指定条件

*

*/

public function check($i)

{

if(!empty($this->upload_file[$i]['name'])){

//检查文件大小

if($this->upload_file[$i]['size']>$this->max_size*1024)$this->upload_file[$i]['error']=2;

//设置默认服务端文件名

$this->upload_file[$i]['filename']=$this->upload_path.$this->upload_file[$i]['name'];

//获取文件路径信息

$file_info=pathinfo($this->upload_file[$i]['name']);

//获取文件扩展名

$file_ext=$file_info['extension'];

//检查文件类型

if(!in_array($file_ext,$this->allow_type))$this->upload_file[$i]['error']=5;

//需要重命名的

if($this->renamed){

list($usec, $sec) = explode(" ",microtime());

$this->upload_file[$i]['filename']=$sec.substr($usec,2).'.'.$file_ext;

unset($usec);

unset($sec);

}

//检查文件是否存在

if(file_exists($this->upload_file[$i]['filename'])){

if($this->overwrite){

@unlink($this->upload_file[$i]['filename']);

}else{

$j=0;

do{

$j++;

$temp_file=str_replace('.'.$file_ext,'('.$j.').'.$file_ext,$this->upload_file[$i]['filename']);

}while (file_exists($temp_file));

$this->upload_file[$i]['filename']=$temp_file;

unset($temp_file);

unset($j);

}

}

//检查完毕

} else $this->upload_file[$i]['error']=6;

}

/**

* 上传文件

*

* @return true

*/

public function upload()

{

$upload_msg='';

for($i=0;$iupload_file_num;$i++)

{

if(!empty($this->upload_file[$i]['name']))

{

//检查文件

$this->check($i);

if (0==$this->upload_file[$i]['error'])

{

//上传文件

if(!@move_uploaded_file($this->upload_file[$i]['tmp_name'],$this->upload_file[$i]['filename']))

{

$upload_msg.='上传文件'.$this->upload_file[$i]['name'].' 出错:'.$this->error($this->upload_file[$i]['error']).'!
';

}else

{

$this->succ_upload_file[]=$this->upload_file[$i]['filename'];

$upload_msg.='上传文件'.$this->upload_file[$i]['name'].' 成功了
';

}

}else $upload_msg.='上传文件'.$this->upload_file[$i]['name'].' 出错:'.$this->error($this->upload_file[$i]['error']).'!
';

}

}

echo $upload_msg;

}

//错误信息

public function error($error)

{

switch ($error) {

case 1:

return '文件大小超过php.ini 中 upload_max_filesize 选项限制的值';

break;

case 2:

return '文件的大小超过了 HTML 表单中 MAX_FILE_SIZE 选项指定的值';

break;

case 3:

return '文件只有部分被上传';

break;

case 4:

return '没有文件被上传';

break;

case 5:

return '这个文件不允许被上传';

break;

case 6:

return '文件名为空';

break;

default:

return '出错';

break;

}

}

//获取成功的数据信息为数组(备用)

public function get_succ_file(){

return $this->succ_upload_file;

}

}

$upload=new File_upload('./upload/','jpg|bmp|png|gif|jpeg');

$upload->upload();

$t=$upload->get_succ_file();

print_r($t);

转载于:https://www.cnblogs.com/itcx/p/4209034.html

标签:文件,name,upload,field,file,error,path,php,上传

来源: https://blog.csdn.net/weixin_30338497/article/details/95934199

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/399046.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

MyBatis的初始化方式

1. 加载配置文件 public static void main(String[] args) throws IOException {//mybatis的配置文件String resource "conf.xml";//使用类加载器加载mybatis的配置文件(它也加载关联的映射文件)InputStream is Test1.class.getClassLoader(…

iOS 应用内跳转到appstore里下载

SKStoreProductViewController类是UIViewController的子类, 如果你对view controller比较熟悉的话,那SKStoreProductViewController使用起来也非常简单了。当你希望向用户展示App Store中产品时,你需要: 1.实例化一个SKStoreProductViewContr…

MySQL查询本周、上周、本月、上个月份数据的sql代码

http://www.jb51.net/article/32277.htm MySQL查询的方式非常多,以下为您介绍的MySQL查询实现的是查询本周、上周、本月、上个月份的数据,假设您对MySQL查询方面感兴趣的话,最好还是一看查询当前这周的数据SELECT name,submittime FROM enter…

matlab用泰勒展开解微分方程,mathematica的解微分方程的能力让人大失所望啊

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼Clear["Global*"]c 299792458*10^2(*光速,单位cm/s*)G 6.67259*10^-8(*gravitational constant,引力常数,单位cm^3/g*s^2*)Msun 1.9891*10^33(*Subscript[M, \[CircleDot]]&#xf…

jquery 实现智能炫酷的翻页相册效果

jquery 实现智能炫酷的翻页相册效果巧妙的运用 Html 的文档属性,大大减少jquery 的代码量,实现了智能炫酷的翻页相册、兼容性很好,实现了代码与标签的完全分离​1. [代码]jquery 实现智能炫酷的翻页相册效果 $(document).ready(function(…

Python爬虫入门项目

Python是什么 Python是著名的“龟叔”Guido van Rossum在1989年圣诞节期间,为了打发无聊的圣诞节而编写的一个编程语言。 创始人Guido van Rossum是BBC出品英剧Monty Python’s Flying Circus(中文:蒙提派森的飞行马戏团)的狂热粉…

学习笔记之-------UIScrollView 基本用法 代理使用

//contentSize、contentInset和contentOffset 是 scrollView三个基本的属性。 // 滚动 self.ScrollView.contentSize self.imageview.frame.size; //偏移X 0 Y -74 向下偏移 self.ScrollView.contentOffset CGPointMake(0,-74); // 边距 距离顶部74 左 0 下40 右0 self.Scr…

hibernate3配置文件hibernate.cfg.xml的详细解释

<!--标准的XML文件的起始行&#xff0c;version1.0表明XML的版本&#xff0c;encodinggb2312表明XML文件的编码方式--> <?xml version1.0 encodinggb2312?> <!--表明解析本XML文件的DTD文档位置&#xff0c;DTD是Document Type Definition 的…

php下载数据表,javascript – 如何使用php下载表数据作为excel表..?

伙计们,我在som计算集后在表格中生成一组数据.一旦用户点击保存按钮excel文件,必须生成该数据以供下载.什么是PHP的代码..伙计们没有从数据库中检索数据……它是在执行了一组计算后显示的.因为我没有任何想法我没有发布任何相关的代码… sry为此…下面是我的表格的样子下面是我…

spring boot 启动类

做项目用到spring boot 感觉spring boot用起来比较流畅。想总结一下&#xff0c;别的不多说&#xff0c;从入口开始。 spring boot启动类Application.class 不能直接放在main/java文件夹下 一、spring boot的入口启动类概览。 import org.springframework.context.annotation.B…

UIImageView圆角,自适应图片宽高比例,图片拉伸,缩放比例和图片缩微图

/* 设置圆角&#xff0c;通过layer中的cornerRadius和masksToBounds即可。 自适应图片宽高比例。通过UIViewContentModeScaleAspectFit设置&#xff0c;注意这个UIImageView的frame就不是init中的数据了。 同样的UIImage图片放入不同frame中的UIIma…

FlashFXP使用教程

点FlashFXP菜单栏“站点-站点管理”打开站点管理器。然后点新建站点&#xff0c;输入站点名称&#xff08;随意&#xff09;&#xff0c;确定。 编辑站点管理器里新建的站点的相关信息&#xff0c;包括站点名称、地址、用户名称、密码等。编辑完成&#xff0c;点应用保存站点信…

七 内置锁 wait notify notifyall; 显示锁 ReentrantLock

Object中对内置锁进行操作的一些方法&#xff1a; Java内置锁通过synchronized关键字使用&#xff0c;使用其修饰方法或者代码块&#xff0c;就能保证方法或者代码块以同步方式执行. 内置锁使用起来非常方便&#xff0c;不需要显式的获取和释放&#xff0c;任何一个对象都能作为…

php如何制定跳转到app原生页面,js实现界面向原生界面发消息并跳转功能

本文实例为大家分享了js界面向原生界面发消息并跳转的具体代码&#xff0c;供大家参考&#xff0c;具体内容如下步骤一在idea中&#xff0c;打开rn项目下的./Android/app,这个过程需要一点儿时间&#xff0c;可能还需要下载gradle的依赖什么的。步骤二跟做原生app没差&#xff…

apm固定翼调试方法

APM飞控传说是大神的神器新手的噩梦,APM是个便宜又好用的飞控~刚开始给我的天行者X5按APM飞控的时候也查询搜索了很多,参数值,修改和混控和混控量的修改翻遍了资料发现咱们论坛教程比较少,所以开帖总结一下本人在用apm玩固定翼一些经验给想玩apm飞控的模友们.如果有哪里说错哪里…

你的工作单位也需善待

善待这个词&#xff0c;常常和家人、朋友联系在一起&#xff0c;其实你不仅要善待家人和朋友&#xff0c;还要善待你所在的工作单位。单位给了你创造财富生存的机会&#xff0c;给了你发挥聪明才智的平台&#xff0c;给了你体现人生价值的天空&#xff0c;所以要善待它。在单位…

识别图片baidu ai php,PHP+百度AI OCR文字识别实现了图片的文字识别功能

第一步可定要获取百度的三个东西 要到百度AI网站(http://ai.baidu.com/)去注册 然后获得-const APP_ID 请填写你的appid;-const API_KEY 请填写你的API_KEY;-const SECRET_KEY 请填写你的SECRET_KEY;第二步下载SDK或者使用官方的 http://ai.baidu.com/sdk 下载第三步 然后就…

Leetcode: Populating Next Right Pointers in Each Node II

Follow up for problem "Populating Next Right Pointers in Each Node".What if the given tree could be any binary tree? Would your previous solution still work?Note:You may only use constant extra space. For example, Given the following binary tre…

深入理解javascript原型和闭包(4)——隐式原型

注意&#xff1a;本文不是javascript基础教程&#xff0c;如果你没有接触过原型的基本知识&#xff0c;应该先去了解一下&#xff0c;推荐看《javascript高级程序设计&#xff08;第三版&#xff09;》第6章&#xff1a;面向对象的程序设计。 上节已经提到&#xff0c;每个函数…

ecshop 手机版的php代码在哪里,PHP 在ecshop上集成 手机网页支付_php

参考alipay网页支付接口的代码其实原理跟ecshop上集成的alipay支付差不多 就是因为利用curl请求的时候相应时间过长 所以不能直接去先post数据再生成button/*** 生成支付代码* param array $order 订单信息* param array $payment 支付方式信息*/function get…