代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
PHP
】
tangframework 上传类
作者:
灏明
/ 发布于
2014/12/10
/
473
namespace Tang\Util; use Tang\Exception\SystemException; use Tang\Services\FileService; use Tang\Storage\Drivers\IStorage; /** * 文件上传组件 * Class Upload * @package Tang\Util */ class Upload { /** * 允许上传的文件后缀 * @var array */ private $allowExts= array('jpg','jpeg','gif','png','bmp'); /** * 是否安全类型检查 * @var boolean */ private $allowSafeCheck = true; /** * 文件后缀名 * @var string */ private $ext = ''; /** * 上传最大大小 (K为单位 1M=1024K) * @var int */ private $maxSize = 1024; /** * 存储引擎 * @var IStorage */ protected $storage; /** * @param IStorage $storage 存储引擎 * @param int $maxSize 最大尺寸 * @param bool $allowSafeCheck 是否允许安全检查 * @param array $exts 允许上传的后缀 */ public function __construct(IStorage $storage,$maxSize = 0,$allowSafeCheck = true,array $exts=array()) { $this->setStorage($storage) ->setMaxSize($maxSize)->setAllowSafe($allowSafeCheck); if($exts) { $this->setAllowExts($exts); } } /** * 设置上传的最大KB * 为0的时候则设置为无限大小 * @param int $maxSize * @return $this */ public function setMaxSize($maxSize = 0) { $maxSize = (int)$maxSize; $this->maxSize = $maxSize > 0 ? $maxSize : 0; return $this; } /** * 设置允许上传的文件后缀数组 * @param array $exts * @return $this */ public function setAllowExts(array $exts) { $this->allowExts = $exts; return $this; } /** * 设置是否允许安全类型检查 * @param boolean $allowSafeCheck * @return $this */ public function setAllowSafe($allowSafeCheck = true) { $this->allowSafeCheck = $allowSafeCheck; return $this; } /** * 设置存储引擎 * @param IStorage $storage * @return $this */ public function setStorage(IStorage $storage) { $this->storage = $storage; return $this; } /** * 如果file控件里面类似于file[]这样的数组信息时候,如果需要用自己定义的地址的时候。 * $fileName则需要传递一个数组对应上传的文件 * @param string $filed 上传的字段名 file控件里面的name * @param mixed $fileName 生成的文件名 不填写的话为系统自动生成文件地址 * @return array * @throws NotFoundFileUploadException * @throws UploadErrorException * @throws UploadSafeCheckException */ public function move($filed,$fileName=null) { if(!isset($_FILES[$filed])) { throw new NotFoundFileUploadException($filed); } $uploadFile = $_FILES[$filed]; if(is_array($uploadFile['name'])) { $fileStructs = array(); if(!is_array($fileName)) { $fileName = array(); } foreach($uploadFile['name'] as $key => $value) { $fileStructs[$key] = $this->uploadHandle(array('name' => $value,'type' => $uploadFile['type'][$key],'tmp_name' => $uploadFile['tmp_name'][$key],'error' => $uploadFile['error'][$key],'size' => $uploadFile['size'][$key]),isset($fileName[$key]) && $fileName[$key] ? $fileName[$key]:''); } return $fileStructs; } else { return $this->uploadHandle($uploadFile,$fileName); } } private function uploadHandle($uploadFile,$fileName='') { if($uploadFile['error'] > 0) { throw new UploadErrorException('File upload error '.$uploadFile['error'],null,50001+$uploadFile['error']); } else if(!is_uploaded_file($uploadFile['tmp_name'])) { throw new UploadErrorException('Illegal file upload!',null,50010); } //判断后缀 $this->ext = FileService::getService()->getExtension($uploadFile['name']); if($this->allowExts && !in_array($this->ext, $this->allowExts)) { throw new UploadSafeCheckException('Only allowed to upload the [%s] file!',array(implode(',', $this->allowExts)),50001); } if($this->maxSize > 0) { $maxSize = 1024 * $this->maxSize; if($uploadFile['size'] > $maxSize ) { throw new UploadErrorException('Upload file size is [%d byte], is greater than the set of [%d byte]!',array($uploadFile['size'],$maxSize),50000); } } //安全类型检查 if($this->allowExts && in_array($this->ext, array('jpeg','jpg','gif','png','bmp')) && !$this->picScan($uploadFile['tmp_name'])) { throw new UploadSafeCheckException('The uploaded file is not a [%s] file!',array($this->ext),50011); } !$fileName && $fileName = $this->createFilePath(); $fileStruct = $this->storage->putFile($uploadFile['tmp_name'],$fileName); $fileStruct['name'] = $uploadFile['name']; return $fileStruct; } /** * 检查文件是否是一个图片 * @param string $fileName * @return boolean */ private function picScan($fileName) { $tempImageSize = @getimagesize($fileName); list($tempWidth, $tempHeight, $tempType) = (array)$tempImageSize; $tempSize = $tempWidth * $tempHeight; if($tempSize > 16777216 || $tempSize < 4 || empty($tempType) || strpos($tempImageSize['mime'], 'flash') > 0) { return false; } return true; } /** * 构建上传路径 */ private function createFilePath() { return date('ym/d/').sha1(uniqid(mt_rand(),1)).'.'.$this->ext; } }
试试其它关键字
tangframework
上传类
同语言下
.
用net匹配并替换iOS标准的emoji表情符号
.
处理带Emoji表情的的字符串
.
获取微信昵称时 过滤特殊字符
.
通过判断上传文件的头字符来判断文件的类型
.
模拟百度URL加密解密算法
.
以太坊检查地址是否合法
.
实现crontab解析类
.
获取每个月的开始和结束时间
.
图片上传工具类
.
APP手机应用信息采集
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
灏明
贡献的其它代码
(
23
)
.
获取目录下的文件数和文件夹数
.
全角转半角 半角转全角 接收文本框的值
.
替换jquer的默认$符号
.
获得Cpu使用率类
.
生成验证码,缩略图,及水印图
.
sql 2005 sql 2008导出数据字典方法
.
FileUpload触发图浏览事件
.
一般图匹配(邻接表形式)
.
掉链图片的替代图片方法
.
遍历m个元素取k个的递归解法
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3