这篇文章主要介绍了PHP实现的文件上传类与用法,结合实例形式较为详细的分析了PHP文件上传类的定义与具体使用方法,需要的朋友可以参考下
FileUpload.class.php,其中用到了两个常量,可在网站配置文件中定义:define('ROOT_PATH',dirname(__FILE__)); //网站根目录、define('UPDIR','/uploads/'); //上传主目录
<?php //上传文件类 class FileUpload { private $error; //错误代码 private $maxsize; //表单最大值 private $type; //类型 private $typeArr = array('image/jpeg','image/pjpeg','image/png','image/x-png','image/gif'); //类型合集 private $path; //目录路径 private $today; //今天目录 private $name; //文件名 private $tmp; //临时文件 private $linkpath; //链接路径 private $linktotay; //今天目录(相对) //构造方法,初始化 public function __construct($_file,$_maxsize) { $this->error = $_FILES[$_file]['error']; $this->maxsize = $_maxsize / 1024; $this->type = $_FILES[$_file]['type']; $this->path = ROOT_PATH.UPDIR; $this->linktotay = date('Ymd').'/'; $this->today = $this->path.$this->linktotay; $this->name = $_FILES[$_file]['name']; $this->tmp = $_FILES[$_file]['tmp_name']; $this->checkError(); $this->checkType(); $this->checkPath(); $this->moveUpload(); } //返回路径 public function getPath() { $_path = $_SERVER["SCRIPT_NAME"]; $_dir = dirname(dirname($_path)); if ($_dir == '\\') $_dir = '/'; $this->linkpath = $_dir.$this->linkpath; return $this->linkpath; } //移动文件 private function moveUpload() { if (is_uploaded_file($this->tmp)) { if (!move_uploaded_file($this->tmp,$this->setNewName())) { Tool::alertBack('警告:上传失败!'); } } else { Tool::alertBack('警告:临时文件不存在!'); } } //设置新文件名 private function setNewName() { $_nameArr = explode('.',$this->name); $_postfix = $_nameArr[count($_nameArr)-1]; $_newname = date('YmdHis').mt_rand(100,1000).'.'.$_postfix; $this->linkpath = UPDIR.$this->linktotay.$_newname; return $this->today.$_newname; } //验证目录 private function checkPath() { if (!is_dir($this->path) || !is_writeable($this->path)) { if (!mkdir($this->path)) { Tool::alertBack('警告:主目录创建失败!'); } } if (!is_dir($this->today) || !is_writeable($this->today)) { if (!mkdir($this->today)) { Tool::alertBack('警告:子目录创建失败!'); } } } //验证类型 private function checkType() { if (!in_array($this->type,$this->typeArr)) { Tool::alertBack('警告:不合法的上传类型!'); } } //验证错误 private function checkError() { if (!empty($this->error)) { switch ($this->error) { case 1 : Tool::alertBack('警告:上传值超过了约定最大值!'); break; case 2 : Tool::alertBack('警告:上传值超过了'.$this->maxsize.'KB!'); break; case 3 : Tool::alertBack('警告:只有部分文件被上传!'); break; case 4 : Tool::alertBack('警告:没有任何文件被上传!'); break; default: Tool::alertBack('警告:未知错误!'); } } } } ?>
其中,用到了一个静态工具类 Tool.class.php,代码如下:
Tool.class.php
<?php class Tool { //弹窗返回 static public function alertBack($_info) { echo "<script type='text/javascript'>alert('$_info');history.back();</script>"; exit(); } //弹窗赋值关闭 static public function alertOpenerClose($_info,$_path) { echo "<script type='text/javascript'>alert('$_info');</script>"; echo "<script type='text/javascript'>opener.document.content.thumbnail.value='$_path';</script>"; echo "<script type='text/javascript'>opener.document.content.pic.style.display='block';</script>"; echo "<script type='text/javascript'>opener.document.content.pic.src='$_path';</script>"; echo "<script type='text/javascript'>window.close();</script>"; exit(); } } ?>
下面进行一个实例演示,请看下面的步骤:
1、先创建一个 index.php 页面,做一个表单
index.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a target=_blank href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" rel="external nofollow" rel="external nofollow" >http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>"> <html xmlns="<a target=_blank href="http://www.w3.org/1999/xhtml" rel="external nofollow" rel="external nofollow" >http://www.w3.org/1999/xhtml</a>"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>main</title> </head> <body> <form name="content" method="post" action="?action=add"> <input type="text" name="thumbnail" class="text" readonly="readonly" /> <input type="button" value="上传" onclick="centerWindow('./upfile.html','upfile','400','100')" /> <img name="pic" style="display:none;" /> ( * 必须是jpg,gif,png,并且200k内) <br /> </form> </body> </html>
2、创建 upfile.html 文件,建立表单提交到 upload.php.
upfile.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a target=_blank href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" rel="external nofollow" rel="external nofollow" >http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>"> <html xmlns="<a target=_blank href="http://www.w3.org/1999/xhtml" rel="external nofollow" rel="external nofollow" >http://www.w3.org/1999/xhtml</a>"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>上传图片</title> </head> <body></p><p> <form method="post" action="./upload.php" enctype="multipart/form-data" style="text-align:center;margin:30px;"> <input type="hidden" name="MAX_FILE_SIZE" value="204800" /> <input type="file" name="pic" /> <input type="submit" name="send" value="确定上传" /> </form></p><p></body> </html>
3、通过 upload.php 文件调用文件上传类实现上传,并且把路径赋给 input 标签和显示图片
<?php require 'FileUpload.class.php'; if (isset($_POST['send'])) { $_fileupload = new FileUpload('pic',$_POST['MAX_FILE_SIZE']); $_path = $_fileupload->getPath(); Tool::alertOpenerClose('文件上传成功!',$_path); } else { Tool::alertBack('警告:文件过大或者其他未知错误导致浏览器崩溃!'); } ?>
相关推荐:
以上是PHP文件上传类与用法详解的详细内容。更多信息请关注PHP中文网其他相关文章!

PHP在电子商务、内容管理系统和API开发中广泛应用。1)电子商务:用于购物车功能和支付处理。2)内容管理系统:用于动态内容生成和用户管理。3)API开发:用于RESTfulAPI开发和API安全性。通过性能优化和最佳实践,PHP应用的效率和可维护性得以提升。

PHP可以轻松创建互动网页内容。1)通过嵌入HTML动态生成内容,根据用户输入或数据库数据实时展示。2)处理表单提交并生成动态输出,确保使用htmlspecialchars防XSS。3)结合MySQL创建用户注册系统,使用password_hash和预处理语句增强安全性。掌握这些技巧将提升Web开发效率。

PHP和Python各有优势,选择依据项目需求。1.PHP适合web开发,尤其快速开发和维护网站。2.Python适用于数据科学、机器学习和人工智能,语法简洁,适合初学者。

PHP仍然具有活力,其在现代编程领域中依然占据重要地位。1)PHP的简单易学和强大社区支持使其在Web开发中广泛应用;2)其灵活性和稳定性使其在处理Web表单、数据库操作和文件处理等方面表现出色;3)PHP不断进化和优化,适用于初学者和经验丰富的开发者。

PHP在现代Web开发中仍然重要,尤其在内容管理和电子商务平台。1)PHP拥有丰富的生态系统和强大框架支持,如Laravel和Symfony。2)性能优化可通过OPcache和Nginx实现。3)PHP8.0引入JIT编译器,提升性能。4)云原生应用通过Docker和Kubernetes部署,提高灵活性和可扩展性。

PHP适合web开发,特别是在快速开发和处理动态内容方面表现出色,但不擅长数据科学和企业级应用。与Python相比,PHP在web开发中更具优势,但在数据科学领域不如Python;与Java相比,PHP在企业级应用中表现较差,但在web开发中更灵活;与JavaScript相比,PHP在后端开发中更简洁,但在前端开发中不如JavaScript。

PHP和Python各有优势,适合不同场景。1.PHP适用于web开发,提供内置web服务器和丰富函数库。2.Python适合数据科学和机器学习,语法简洁且有强大标准库。选择时应根据项目需求决定。

PHP是一种广泛应用于服务器端的脚本语言,特别适合web开发。1.PHP可以嵌入HTML,处理HTTP请求和响应,支持多种数据库。2.PHP用于生成动态网页内容,处理表单数据,访问数据库等,具有强大的社区支持和开源资源。3.PHP是解释型语言,执行过程包括词法分析、语法分析、编译和执行。4.PHP可以与MySQL结合用于用户注册系统等高级应用。5.调试PHP时,可使用error_reporting()和var_dump()等函数。6.优化PHP代码可通过缓存机制、优化数据库查询和使用内置函数。7


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

Dreamweaver CS6
视觉化网页开发工具

VSCode Windows 64位 下载
微软推出的免费、功能强大的一款IDE编辑器

Dreamweaver Mac版
视觉化网页开发工具

MinGW - 适用于 Windows 的极简 GNU
这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。

适用于 Eclipse 的 SAP NetWeaver 服务器适配器
将Eclipse与SAP NetWeaver应用服务器集成。