-
适用于初学者的简易PHP文件上传类
这篇文章主要为大家分享了一个适用于初学者的简易PHP文件上传类,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,本文实例讲述了PHP多文件上传类,分享给大家供大家参考,具体如下:
- <?php
- class Test_Upload{
- protected $_uploaded = array();
- protected $_destination;
- protected $_max = 1024000;
- protected $_messages = array();
- protected $_permited = array(
- 'image/gif',
- 'image/jpeg',
- 'image/pjpeg',
- 'image/png'
- );
- protected $_renamed = false;
- /**
- *
- * @param mix $path
- *
- */
- public function __construct($path){
- if (!is_dir($path) || !is_writable($path)){
- throw new Exception("文件名不可写,或者不是目录!");
- }
- $this->_destination = $path;
- $this->_uploaded = $_FILES;
- }
- /**
- * 移动文件
- *
- */
- public function move(){
- $filed = current($this->_uploaded);
- $isOk = $this->checkError($filed['name'], $filed['error']);
- //debug ok
- if ($isOk){
- $sizeOk = $this->checkSize($filed['name'], $filed['size']);
- $typeOk = $this->checkType($filed['name'], $filed['type']);
- if ($sizeOk && $typeOk){
- $success = move_uploaded_file($filed['tmp_name'], $this->_destination.$filed['name']);
- if ($success){
- $this->_messages[] = $filed['name']."文件上传成功";
- }else {
- $this->_messages[] = $filed['name']."文件上传失败";
- }
- }
- }
- }
- /**
- * 查询messages数组内容
- *
- */
- public function getMessages(){
- return $this->_messages;
- }
- /**
- * 检测上传的文件大小
- * @param mix $string
- * @param int $size
- */
- public function checkSize($filename, $size){
- if ($size == 0){
- return false;
- }else if ($size > $this->_max){
- $this->_messages[] = "文件超出上传限制大小".$this->getMaxsize();
- return false;
- }else {
- return true;
- }
- }
- /**
- * 检测上传文件的类型
- * @param mix $filename
- * @param mix $type
- */
- protected function checkType($filename, $type){
- if (!in_array($type, $this->_permited)){
- $this->_messages[] = "该文件类型是不被允许的上传类型";
- return false;
- }else {
- return true;
- }
- }
- /**
- * 获取文件大小
- *
- */
- public function getMaxsize(){
- return number_format($this->_max / 1024, 1).'KB';
- }
- /**
- * 检测上传错误
- * @param mix $filename
- * @param int $error
- *
- */
- public function checkError($filename, $error){
- switch ($error){
- case 0 : return true;
- case 1 :
- case 2 : $this->_messages[] = "文件过大!"; return true;
- case 3 : $this->_messages[] = "错误上传文件!";return false;
- case 4 : $this->_messages[] = "没有选择文件!"; return false;
- default : $this->_messages[] = "系统错误!"; return false;
- }
- }
- }
- ?>
出处:http://www.phpfensi.com/php/20210623/16635.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式