五分钟PHP上传类实现

开发 后端
这里介绍了PHP上传类的案例分析,文章有详细的代码,复制粘贴一下就可以跑在机器上使用,希望对大家有帮助。

PHP有很多值得学习的地方,这里我们主要介绍PHP上传类的解决方案,希望大家通过本文有大的收获。用户可以直接在WEB页面中输入PHP命令代码,因而不需要任何特殊的开发环境。在WEB页面中,所有PHP代码都被放置在“”中。此外,用户还可以选择使用诸如 等的形式。PHP引擎会自动识别并处理页面中所有位于PHP定界符之间的代码。

#T#PHP脚本语言的语法结构与C语言和Perl语言的语法风格非常相似。用户在使用变量前不需要对变量进行声明。使用PHP创建数组的过程也非常简单。PHP还具有基本的面向对象组件功能,可以极大的方便用户有效组织和封装自己编写的代码,下面我们就详细的介绍PHP上传类的问题。
 
PHP上传类实现代码:

<?php 
/**  
*Fileuploadclass  
*@version1.0.0(ThuAug1801:32:39CST2005)  
*@authorsanshi  
*/  
classupLoad  
{  
/**  
*  
*@authorsanshi  
*@version1.0.0ThuAug1801:00:18CST2005  
*@paramstring$info文件内容  
*@paramstring$fileName生成的文件名  
*@returnboolean建立成功返回true  
*@deprecated  
*建立html文件  
*/  
functioncreateHtml($info,$fileName)  
{  
}  
/**  
*  
*@authorsanshi  
*@version1.0.0ThuAug1801:03:09CST2005  
*@returnvoid  
*@deprecated  
*构造函数  
*/  
functiondownLoad()  
{}  
/**  
*  
*@authorsanshi  
*@version1.0.0ThuAug1801:03:55CST2005  
*@paramstring$fileField在表单中的字段名  
*@paramstring$length限制的长度  
*@returnboolean成功返回true  
*@deprecated  
*功能实现函数  
*/  
functioninit($fileField,$length='')  
{  
$files=$_FILES[$fileField];  
//用户名需要改动,根据自己的实际情况做改动  
$userName='sanshi';  
$fileName=$files['name'];  
$fileType=$files['type'];  
$fileTemp=$files['tmp_name'];  
$fileSize=empty($length)?($files['size']+10):$length;  
$fileError=$files['error'];//这块也许php4中没有  
//改为  
//if($this->_isType($fileName)||$this->_isBig($length ))  
if(!$this->_isType($fileName)||$this->_isBig($length )||$fileError!=0)  
{  
//print_r($files);  
returnfalse;  
}else{  
$path=$this->_createDir($userName);//取得路径  
$createFileName=$userName."_".time();//设置当前文件名  
$createFileType=$this->getFileType($fileName);//设置文件类别  
return@move_uploaded_file($fileTemp,$path.$createFileName.'.'.$createFileType)?true:false;  
}  
}  
 
/**  
*  
*@authorsanshi  
*@version1.0.0ThuAug1801:07:43CST2005  
*@paramint$length上传限制的大小  
*@returnboolean超过返回true  
*@deprecated  
*判断是否超过预定大小  
*/  
function_isBig($length)  
{  
$bigest='';  
return$big>$bigest?true:false;  
}  
/**  
*  
*@authorsanshi  
*@version1.0.0ThuAug1801:08:55CST2005  
*@paramstring$fileName文件名  
*@returnstring$fileType文件后缀  
*@deprecated  
*取得文件后缀(只取得文件的***一个后缀名)  
*/  
functiongetFileType($fileName)  
{  
returnend(explode('.',$fileName));  
}  
/**  
*  
*@authorsanshi  
*@version1.0.0ThuAug1801:10:41CST2005  
*@paramstring$fileName文件名  
*@paramboolean$method是否检查多个后缀默认false  
*@paramint$postFix后缀个数默认为2  
*@returnboolean存在返回true  
*@deprecated  
*检查文件的后缀是否在类别数组中,类别数组自己设置  
*如果$method设置为true则检查文件有几个后缀  
*/  
function_isType($fileName,$method='false',$postFix=2)  
{  
//设置类别数组  
$type=array('jpeg',  
'gif',  
'bmp',  
'exe');  
$fileName=strtolower($fileName);  
$fileTypeArray=explode('.',$fileName);  
$fileType=end($fileTypeArray);  
//判断是否有一个文件有多个后缀  
if($method)  
{  
if(count($fileTypeArray)>(is_int($postFix)?$postFix:2))  
{  
returnfalse;  
}  
}  
returnin_array($fileType,$type);  
}  
 
/**  
*  
*@authorsanshi  
*@version1.0.0ThuAug1801:17:19CST2005  
*@paramstring$userName  
*@returnstring$path  
*@deprecated  
*建立目录目录格式年/月/日/用户名/  
*权限为755  
*/  
function_createDir($userName)  
{  
$root='';  
$pathSign=DIRECTORY_SEPARATOR;  
$y=date('Y').$pathSign;  
$m=date('m').$pathSign;  
$d=date('d').$pathSign;  
$path=$root.$y.$m.$d.$userName;  
$dirArray=explode($pathSign,$path);  
$tempDir='';  
foreach($dirArrayas$dir)  
{  
$tempDir.=$dir.$pathSign;  
$isFile=file_exists($tempDir);  
clearstatcache();  
if(!$isFile&&!is_dir($tempDir))  
{  
@mkdir($tempDir,0755);  
}  
}  
return$path.$pathSign;  
}  
/**  
*  
*@authorsanshi  
*@version1.0.0ThuAug1801:19:32CST2005  
*@param string$dirName目录名  
*@return boolean可以操作返回true  
*@deprecated  
*判断操作是否在上传目录  
*/  
function_isDel($dirName)  
{  
//注意upLoadDir,一定要与真正使用目录相对应  
$upLoadDir='';  
$upLoadDir=preg_replace('/\\//','\/',$upLoadDir);  
$format="/^{$upLoadDir}/";  
returnpreg_match($format,$dirName);  
}  
/**  
*  
*@authorsanshi  
*@version1.0.0ThuAug1801:25:58CST2005  
*@paramstring$fileName文件名  
*@returnboolean删除文件成功返回true  
*@deprecated  
*删除文件  
*/  
functiondelFile($fileName)  
{  
$cur_dir=dirname(trim($fileName));  
if($this->_isDel($cur_dir))  
{  
return@unlink($fileName)?true:false;  
}else{  
returnfalse;  
}  
}  
/**  
*  
*@authorsanshi  
*@version1.0.0ThuAug1801:27:43CST2005  
*@paramstring$dieName目录名  
*@returnboolean删除成功返回true  
*@deprecated  
*删除目录目录下如果有文件不能删除  
*/  
functiondelDir($dirName)  
{  
if($this->_isDel($dirName)&&is_dir($dirName))  
{  
return@rmdir($dirName)?true:false;  
}else{  
returnfalse;  
}  
}  
 
}  
?> 
<?php 
//使用  
/*  
include'upLoad.class.php';  
$up=newupLoad();  
if($up->init("file"))  
{  
echo'success';  
}else{  
echo'failure';  
}  
*/  
?> 
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.
  • 116.
  • 117.
  • 118.
  • 119.
  • 120.
  • 121.
  • 122.
  • 123.
  • 124.
  • 125.
  • 126.
  • 127.
  • 128.
  • 129.
  • 130.
  • 131.
  • 132.
  • 133.
  • 134.
  • 135.
  • 136.
  • 137.
  • 138.
  • 139.
  • 140.
  • 141.
  • 142.
  • 143.
  • 144.
  • 145.
  • 146.
  • 147.
  • 148.
  • 149.
  • 150.
  • 151.
  • 152.
  • 153.
  • 154.
  • 155.
  • 156.
  • 157.
  • 158.
  • 159.
  • 160.
  • 161.
  • 162.
  • 163.
  • 164.
  • 165.
  • 166.
  • 167.
  • 168.
  • 169.
  • 170.
  • 171.
  • 172.
  • 173.
  • 174.
  • 175.
  • 176.
  • 177.
  • 178.
  • 179.
  • 180.
  • 181.
  • 182.
  • 183.
  • 184.
  • 185.
  • 186.
  • 187.
  • 188.
  • 189.
  • 190.
  • 191.
  • 192.
  • 193.
  • 194.
  • 195.
  • 196.
  • 197.
  • 198.
  • 199.
  • 200.
  • 201.
  • 202.
  • 203.
  • 204.
  • 205.
  • 206.
  • 207.
  • 208.
  • 209.
  • 210.
  • 211.
  • 212.
  • 213.
  • 214.
  • 215.
  • 216.
  • 217.
  • 218.
  • 219.
  • 220.
  • 221.
  • 222.
  • 223.
  • 224.
  • 225.
  • 226.
  • 227.
责任编辑:田树 来源: 博客
相关推荐

2009-11-16 11:30:55

PHP上传文件代码

2011-08-08 09:22:10

Python

2009-11-17 12:47:05

PHP配置

2009-10-30 13:12:40

VB.NET创建类

2009-10-26 15:45:43

VB.NET类构造

2009-10-21 18:19:36

VB.NET实现拖放

2009-11-16 10:53:30

Oracle Hint

2024-12-11 07:00:00

面向对象代码

2025-03-13 06:22:59

2020-06-16 08:47:53

磁盘

2022-12-13 10:05:27

定时任务任务调度操作系统

2021-06-07 09:51:22

原型模式序列化

2019-08-09 10:33:36

开发技能代码

2009-10-22 16:18:19

Oracle表空间

2025-01-20 08:50:00

2024-09-18 08:21:24

JavaScriptTypeScriptprototype

2021-10-19 07:27:08

HTTP代理网络

2009-11-05 14:53:54

Visual Stud

2023-09-07 23:52:50

Flink代码

2022-12-16 09:55:50

网络架构OSI
点赞
收藏

51CTO技术栈公众号