PHP图片上传类
前言
在php开发中,必不可少要用到文件上传,整理封装了一个图片上传的类也很有必要。
图片上传的流程图
一、控制器调用
public function upload_file() {
if (IS_POST) {
if (!empty($_FILES['Filedata'])) {
import('Org.Upload', COMMON_PATH);
$upload = new \Upload();
// 允许上传文件大小
$upload->allowMaxSize(C('ALLOW_UPLOAD_FILE_MAX_SIZE'));
// 允许上传的文件类型
$upload->allowExt(C('ALLOW_UPLOAD_FILE_TYPE'));
// 获取上传文件的信息
$upload->get_upload_file_info($_FILES['Filedata']);
// 指定上传目录
$upload->root_dir(ROOT_PATH);
// 生成文件名
$file_name = $upload->upload_file_name();
// 保存到指定的目录
$res = $upload->save_file('Uploads/', $file_name);
if ($res === false) {
dump($upload->get_error());
} else {
echo '上传成功';
}
}
}
}
二、文件上传类代码
<?php /**
* @desc 文件上传类
* @author Timothy
* Created by PhpStorm.
* Date: 2016/10/17
* Time: 12:18
*/
class Upload
{
protected $_error = '';
protected $_allowExt = array();
protected $_allowSize = 0;
protected $file_info = null;
protected $_root_dir = null; /**
* @desc 上传文件信息
* @param array $file_info
* @return bool
*/
public function get_upload_file_info(array $file_info = array()) {
// 判断错误号是否>0
if ($file_info['error'] > 0) {
$this->_checkError($file_info['error']);
} // 判断是否是通过HTTP POST方式上传
if (!is_uploaded_file($file_info['tmp_name'])) {
$this->_error = '文件不是通过HTTP POST方式上传的';
return false;
} $this->file_info = $this->_format_upload_file_info($file_info);
} /**
* @desc 格式化上传文件的信息
* @param array $file_info
* @return array
*/
private function _format_upload_file_info(array $file_info = array()) {
$pathinfo = pathinfo($file_info['name'], PATHINFO_EXTENSION);
$file_info['extension'] = $pathinfo;
return $file_info;
} // 上传文件的错误信息处理
private function _checkError($file_error = '') {
switch ($file_error) {
case UPLOAD_ERR_INI_SIZE:
$this->_error = '上传文件超过了PHP配置文件中upload_max_filesize选择项的值';
return false;
break;
case UPLOAD_ERR_FORM_SIZE:
$this->_error = '超过了表单MAX_FILE_SIZE限制的大小';
return false;
break;
case UPLOAD_ERR_PARTIAL:
$this->_error = '文件部分被上传';
return false;
break;
case UPLOAD_ERR_NO_FILE:
$this->_error = '没有文件被上传';
return false;
break;
case UPLOAD_ERR_NO_TMP_DIR :
$this->_error = '找不到临时文件';
return false;
break;
case UPLOAD_ERR_CANT_WRITE:
$this->_error = '文件写入失败';
return false;
break;
case UPLOAD_ERR_EXTENSION:
$this->_error = '文件类型不正确';
return false;
break;
default:
$this->_error = '系统错误';
return false;
break;
}
} /**
* @desc 判断上传文件的类型
* @param string $file_type
* @return bool
*/
private function _checkExt($file_type = '') {
if (!in_array($file_type, $this->_allowExt)) {
$this->_error = '上传的文件类型不正确';
return false;
}
return true;
} /**
* @desc 判断上传文件的大小
* @param int $file_size
* @return bool
*/
private function _checkSize($file_size = 0) {
if ($file_size > $this->_allowSize) {
$this->_error = '上传的图片过大';
return false;
}
return true;
} /**
* @desc 处理允许上传的文件类型
* @param int $max_size
* @return bool|int
*/
public function allowMaxSize($max_size = 2) {
if (!is_numeric($max_size)) {
$this->_error = '允许上传的文件大小不正确';
return false;
}
$this->_allowSize = $max_size * 1024 * 1024;
} /**
* @desc 处理允许上传的文件类型
* @param string $ext
*/
public function allowExt($ext = '') {
$this->_allowExt = explode('|', $ext);
} /**
* @desc 指定路径
* @param none
* @return void
*/
public function root_dir($dir) {
$this->_root_dir = $dir;
} /**
* @desc 递归创建目录
* @param $path
* @return bool
*/
private function _mkdir($path) {
if (!is_dir($path)) {
if (@mkdir($path, 0777, true))
return true;
else
$this->_error = '目录创建失败';
return false;
} else {
return true;
}
} // 生成一个唯一的文件名,防止因重名而被覆盖
public function upload_file_name() {
return md5(uniqid(microtime(true), true)) . '.' . $this->file_info['extension'];
} /**
* @desc 把上传的临时文件保存到指定目录
* @param string $path
* @param string $file_name
* @return string
*/
public function save_file($path = '', $file_name = '') {
// 判断是否是合法的文件类型
if (!$this->_checkExt($this->file_info['extension'])) {
return false;
} // 判断是否是合法的文件大小
if (!$this->_checkSize($this->file_info['size'])) {
return false;
} if (!$this->_checkTrueImage($this->file_info['tmp_name'])) {
return false;
} $abs_path = $this->_root_dir ? $this->_root_dir . $path : $path ;
if ($this->_mkdir($abs_path)) {
if (move_uploaded_file($this->file_info['tmp_name'], $abs_path . $file_name)) {
@chmod($abs_path, 0666);
return $abs_path;
}
} else {
$this->_error = '上传文件失败';
}
} /**
* @desc 判断是否是真实的图片
* @param string $file_info
* @return bool
*/
private function _checkTrueImage($file_info = '') {
if (!getimagesize($file_info)) {
$this->_error = '文件不是真实的图片';
return false;
}
return true;
} /**
* @desc 获取上传错误信息,然后返回
* @return string
*/
public function get_error() {
return $this->_error;
}
}
PHP图片上传类的更多相关文章
- [上传下载] C# ImageUpload图片上传类教程与源码下载 (转载)
点击下载 ImageUpload.zip 功能如下图片1.设置属性后上传图片,用法如下 /// <summary> /// 图片上传类 /// </summary> //--- ...
- PHP多图片上传类推荐
多文件上传是PHP中的一个基础应用,反正PHPer都会遇到的问题,现在就介绍一个功能完善.强大的多文件上传类给大家吧,能用上这个类的地方会很多. <?php class Upload{ var ...
- 阿里云OSS图片上传类
1.阿里云基本函数 /** * 把本地变量的内容到文件 * 简单上传,上传指定变量的内存值作为object的内容 */ public function putObject($imgPath,$obje ...
- PHP之图片上传类(加了缩略图)
有缩略图功能 但是 感觉不全面,而且有点问题,继续学习,将来以后修改下 <form action="<?php $_SERVER['PHP_SELF']; ?>" ...
- laravel之引入图片上传类
1.在官网http://www.uploadify.com/ 下载插件,flash verison 的版本是免费版 2.解压后将文件夹放置在指定的目录下 3.前端导入css,js文件,可以仿照文件夹中 ...
- ASP.NET 图片上传工具类 upload image简单好用功能齐全
使用方法: UploadImage ui = new UploadImage(); /***可选参数***/ ui.SetWordWater = "哈哈";//文字水印 // ui ...
- THINKPHP源码学习--------文件上传类
TP图片上传类的理解 在做自己项目上传图片的时候一直都有用到TP的上传图片类,所以要进入源码探索一下. 文件目录:./THinkPHP/Library/Think/Upload.class.php n ...
- yii php 图片上传与生成缩略图
今天需要做图片上传与生成缩略图的功能,把代码进行记录如下: html 视图 ($pic_action_url = $this->createAbsoluteUrl('h ...
- yii2.0 图片上传(摘录)
文章来源:http://blog.sina.com.cn/s/blog_88a65c1b0101izmn.html 下面小伙就带领大学学习一下 Yii2.0 的图片上传类的使用,还是老样子,如果代码样 ...
随机推荐
- Jackson轻易转换JSON
原文http://www.cnblogs.com/hoojo/archive/2011/04/22/2024628.html Jackson可以轻松的将Java对象转换成json对象和xml文档,同样 ...
- 理解CSS相对定位和固定定位
× 目录 [1]相对定位 [2]固定定位 前面的话 一般地,说起定位元素是指position不为static的元素,包括relative.absolute和fixed.前面已经详细介绍过absolut ...
- 洛谷P1328 生活大爆炸版石头剪刀布——S.B.S.
题目描述 石头剪刀布是常见的猜拳游戏:石头胜剪刀,剪刀胜布,布胜石头.如果两个人出拳一样,则不分胜负.在<生活大爆炸>第二季第8 集中出现了一种石头剪刀布的升级版游戏. 升级版游戏在传统的 ...
- BZOJ3130: [Sdoi2013]费用流[最大流 实数二分]
3130: [Sdoi2013]费用流 Time Limit: 10 Sec Memory Limit: 128 MBSec Special JudgeSubmit: 960 Solved: 5 ...
- CF731C. Socks[DFS 贪心]
C. Socks time limit per test 2 seconds memory limit per test 256 megabytes input standard input outp ...
- [2016湖南长沙培训Day4][前鬼后鬼的守护 chen] (动态开点线段树+中位数 or 动规 or 贪心+堆优化)
题目大意 给定一个长度为n的正整数序列,令修改一个数的代价为修改前后两个数的绝对值之差,求用最小代价将序列转换为不减序列. 其中,n满足小于500000,序列中的正整数小于10^9 题解(引自mzx神 ...
- 微软TFS Agile/CMMI/Scrum
二.VS Online 与 Agile/Cmmi/Scrum 介绍了背景,那就言归正传了.VS Online 和文章标题有什么关系呢? 成功注册VS Online之后,我准备创建自己的project时 ...
- 为WebService指定线程池
通过阅读WebService发布过程的源代码,可以配置自定义的线程池 package org.zln.ws.server;import com.sun.xml.internal.ws.api.Bind ...
- MVP模式(Android)
以前在写项目的时候,没有过多考虑架构模式的问题,因为之前一直做J2EE开发,而J2EE都是采用MVC模式进行开发的,所以在搭建公司项目的时候,也是使用类似MVC的架构(严格来讲,之前的项目还算不上MV ...
- Python-05-常用模块
sys模块 # sys.argv # 在执行程序的时候可以给程序传参数,例如类似执行nginx检测配置文件语法功能的命令, nginx -t # mode_sys.py import sys prin ...