PHP实现的文件上传类与用法详解

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了PHP实现的文件上传类与用法详解脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了PHP实现的文件上传类与用法分享给大家供大家参考,具体如下:

FileUpload.class.PHP,其中用到了两个常量,可在网站配置文件中定义:define('ROOT_PATH',dirname(__FILE__)); //网站根目录、define('UPDIR','/uploads/'); //上传主目录

<PRe class="brush:PHp;"> 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('警告:未知错误!'); } } } } ?>

脚本宝典总结

以上是脚本宝典为你收集整理的PHP实现的文件上传类与用法详解全部内容,希望文章能够帮你解决PHP实现的文件上传类与用法详解所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。