您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息
免费发信息

PHP文件上传类实例详解,_PHP教程

2024/4/17 5:07:19发布4次查看
php文件上传类实例详解,本文实例讲述了php文件上传类。分享给大家供大家参考,具体如下:
这里演示了fileupload.class.php文件上传类,其中用到了两个常量,可在网站配置文件中定义:
define('root_path',dirname(__file__)); //网站根目录define('updir','/uploads/'); //上传主目录
具体代码如下:
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

下面进行一个实例演示,请看下面的步骤:
1、先创建一个 index.php 页面,做一个表单
index.php
main ( * 必须是jpg,gif,png,并且200k内)

2、创建 upfile.html 文件,建立表单提交到 upload.php
upfile.html
上传图片

3、通过 upload.php 文件调用文件上传类实现上传,并且把路径赋给 input 标签和显示图片
getpath(); tool::alertopenerclose('文件上传成功!',$_path); } else { tool::alertback('警告:文件过大或者其他未知错误导致浏览器崩溃!'); }?>
更多关于php相关内容感兴趣的读者可查看本站专题:《php文件操作总结》、《php运算与运算符用法总结》、《php网络编程技巧总结》、《php基本语法入门教程》、《php操作office文档技巧总结(包括word,excel,access,ppt)》、《php日期与时间用法总结》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家php程序设计有所帮助。
您可能感兴趣的文章:适用于初学者的简易php文件上传类一个完整的php文件上传类实例讲解php多文件上传类实例php判断文件上传类型及过滤不安全数据的方法php可生成缩略图的文件上传类实例一个经典的php文件上传类分享php 文件上传类代码php5+utf8多文件上传类
http://www.bkjia.com/phpjc/1119982.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/1119982.htmltecharticlephp文件上传类实例详解, 本文实例讲述了php文件上传类。分享给大家供大家参考,具体如下: 这里演示了fileupload.class.php文件上传类,其中...
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录