suchen
HeimBackend-EntwicklungPHP-TutorialPHP上传类,分享给大家,不足之处请见谅!该如何处理

PHP上传类,分享给大家,不足之处请见谅!
不足之处请高手见谅!

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->/*** 文件上传类 kangyangyang 2010-06-07* $loadfile 要上传的文件的文件域* $loadpath 文件存放路径* $loadhold 保留文件原名* $loadsize 文件大小限制 //默认是2048KB* $loadtype 文件类型限制 //默认支持 jpg|jpeg|gif|png|txt|rar|zip**/class uploadfile{private $loadfile;private $loadpath;private $loadsize;private $loadtype;private $loadhold = false;private $chkfile = true;private $file_name;private $extend_type;private $set_name;private $set_size;private $set_path;private $set_create_name;private $get_error;//构造函数function __construct($loadfile,$loadpath,$loadhold = false,$loadsize="2097152",$loadtype="jpg|jpeg|gif|png|txt|rar|zip"){   $this->loadfile = $loadfile;   $this->loadpath = $loadpath;   $this->loadsize = $loadsize;   $this->loadtype = $loadtype;   $this->loadhold = $loadhold;   $this->filecheck();}//文件上传function filecheck(){  $filename = $_FILES[$this->loadfile]['name']; //文件名  $filetype = $_FILES[$this->loadfile]['type']; //文件类型  $filesize = $_FILES[$this->loadfile]['size']; //文件大小  $filepath = $_FILES[$this->loadfile]['tmp_name']; //临时文件  $fileerror= $_FILES[$this->loadfile]['error']; //错误代码  if($fileerror loadsize >= $filesize){    $this->set_size = $filesize;    $ext = explode(".",$filename);    $this->set_name = $ext;    $ext_type = strtolower($ext[count($ext)-1]);    $this->extend_type = $ext_type;    $chk_type = explode("|",$this->loadtype);    if(in_array($ext_type,$chk_type)){     $f_path = $this->get_folder();     $this->set_create_name = $createname = time().rand(1,9999);     $this->file_name = $createname.".".$ext_type;     if($this->loadhold){      $file_path = $f_path.$filename;      $this->set_path = $file_path;     }else{      $file_path = $f_path.$this->file_name;      $this->set_path = $file_path;     }     $ckfile = move_uploaded_file($filepath,$file_path);     if(!$ckfile){      $this->chefile = false;     }    }else{     $this->chkfile = false;    }   }else{    $this->chkfile = false;   }  }else{   $this->chkfile = false;   $this->get_error = $fileerror;  }}//生成的文件名function get_CreateName(){  if($this->CheckFile()){   if(!$this->loadhold){    return $this->set_create_name;   }  }}//返回文件夹路径function get_folder(){  if($this->CheckFile()){   if(!file_exists($this->loadpath)){    mkdir($this->loadpath,0777,true);    chmod($this->loadpath,0777);   }   return $this->loadpath;  }}//文件扩展名function get_type(){  if($this->CheckFile()){   return $this->extend_type;  }}//文件名"不包括扩展名"function get_name(){  if($this->CheckFile()){   $filename = $this->set_name;   unset($filename[count($filename)-1]);   return implode(".",$filename);  }}//返回文件大小function get_size(){  if($this->CheckFile()){   return $this->set_size;  }}//返回文件全路径function get_path(){  if($this->CheckFile()){   return  $this->set_path;  }}//文件是否上传成功function CheckFile(){  return $this->chkfile;}//获取错误代码function get_error(){  if($this->CheckFile()){   return $this->get_error;  }}}


------解决方案--------------------
不错,谢谢
------解决方案--------------------

------解决方案--------------------
不错,收藏
------解决方案--------------------
太牛了,收藏下
Stellungnahme
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
华为GT3 Pro和GT4的差异是什么?华为GT3 Pro和GT4的差异是什么?Dec 29, 2023 pm 02:27 PM

许多用户在选择智能手表的时候都会选择的华为的品牌,其中华为GT3pro和GT4都是非常热门的选择,不少用户都很好奇华为GT3pro和GT4有什么区别,下面就就给大家介绍一下二者。华为GT3pro和GT4有什么区别一、外观GT4:46mm和41mm,材质是玻璃表镜+不锈钢机身+高分纤维后壳。GT3pro:46.6mm和42.9mm,材质是蓝宝石玻璃表镜+钛金属机身/陶瓷机身+陶瓷后壳二、健康GT4:采用最新的华为Truseen5.5+算法,结果会更加的精准。GT3pro:多了ECG心电图和血管及安

function是什么意思function是什么意思Aug 04, 2023 am 10:33 AM

function是函数的意思,是一段具有特定功能的可重复使用的代码块,是程序的基本组成单元之一,可以接受输入参数,执行特定的操作,并返回结果,其目的是封装一段可重复使用的代码,提高代码的可重用性和可维护性。

修复:截图工具在 Windows 11 中不起作用修复:截图工具在 Windows 11 中不起作用Aug 24, 2023 am 09:48 AM

为什么截图工具在Windows11上不起作用了解问题的根本原因有助于找到正确的解决方案。以下是截图工具可能无法正常工作的主要原因:对焦助手已打开:这可以防止截图工具打开。应用程序损坏:如果截图工具在启动时崩溃,则可能已损坏。过时的图形驱动程序:不兼容的驱动程序可能会干扰截图工具。来自其他应用程序的干扰:其他正在运行的应用程序可能与截图工具冲突。证书已过期:升级过程中的错误可能会导致此issu简单的解决方案这些适合大多数用户,不需要任何特殊的技术知识。1.更新窗口和Microsoft应用商店应用程

java中private是什么意思java中private是什么意思Nov 24, 2022 pm 06:27 PM

在java中,private的意思为“私有的”,是一种访问控制修饰符,用于修饰类、属性和方法。用private修饰的类成员,只能被该类自身的方法访问和修改,而不能被任何其他类(包括该类的子类)访问和引用;因此,private修饰符具有最高的保护级别。

如何修复无法连接到iPhone上的App Store错误如何修复无法连接到iPhone上的App Store错误Jul 29, 2023 am 08:22 AM

第1部分:初始故障排除步骤检查苹果的系统状态:在深入研究复杂的解决方案之前,让我们从基础知识开始。问题可能不在于您的设备;苹果的服务器可能会关闭。访问Apple的系统状态页面,查看AppStore是否正常工作。如果有问题,您所能做的就是等待Apple修复它。检查您的互联网连接:确保您拥有稳定的互联网连接,因为“无法连接到AppStore”问题有时可归因于连接不良。尝试在Wi-Fi和移动数据之间切换或重置网络设置(“常规”>“重置”>“重置网络设置”>设置)。更新您的iOS版本:

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

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

"enumerate()"函数在Python中的用途是什么?"enumerate()"函数在Python中的用途是什么?Sep 01, 2023 am 11:29 AM

在本文中,我们将了解enumerate()函数以及Python中“enumerate()”函数的用途。什么是enumerate()函数?Python的enumerate()函数接受数据集合作为参数并返回一个枚举对象。枚举对象以键值对的形式返回。key是每个item对应的索引,value是items。语法enumerate(iterable,start)参数iterable-传入的数据集合可以作为枚举对象返回,称为iterablestart-顾名思义,枚举对象的起始索引由start定义。如果我们忽

Java 函数的访问权限修饰符之 private 详解Java 函数的访问权限修饰符之 private 详解Apr 25, 2024 pm 04:48 PM

private是一种Java访问权限修饰符,它限制函数的可访问性,只允许在定义它的类中访问,包括:在其他类中无法访问该函数。在子类中也无法访问该函数。

See all articles

Heiße KI -Werkzeuge

Undresser.AI Undress

Undresser.AI Undress

KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover

AI Clothes Remover

Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool

Undress AI Tool

Ausziehbilder kostenlos

Clothoff.io

Clothoff.io

KI-Kleiderentferner

AI Hentai Generator

AI Hentai Generator

Erstellen Sie kostenlos Ai Hentai.

Heißer Artikel

Heiße Werkzeuge

Senden Sie Studio 13.0.1

Senden Sie Studio 13.0.1

Leistungsstarke integrierte PHP-Entwicklungsumgebung

SublimeText3 chinesische Version

SublimeText3 chinesische Version

Chinesische Version, sehr einfach zu bedienen

SublimeText3 Linux neue Version

SublimeText3 Linux neue Version

SublimeText3 Linux neueste Version

Notepad++7.3.1

Notepad++7.3.1

Einfach zu bedienender und kostenloser Code-Editor

Dreamweaver CS6

Dreamweaver CS6

Visuelle Webentwicklungstools