当前位置:首页 > PHP教程 > php上传下载 > 列表

php 文件上传实例代码

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-16 16:55:13 浏览: 评论:0 

php 文件上传实例代码,本文章为你提供一款经典的php文件上传类了,并且举例验证了这一款文件上传代码是可用的哦。

  1. <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"
  2. <html xmlns="http://www.111cn.net/1999/xhtml"
  3. <head> 
  4. <meta http-equiv="content-type" content="text/html; charset=gb2312" /> 
  5. <title>无标题文档</title> 
  6. </head> 
  7. <body> 
  8. <form id="form1" name="form1" enctype="multipart/form-data" method="post" action=""
  9.   <label for="filefield"></label> 
  10.   <input type="file" name="filefield" id="filefield" /> 
  11.   <input type="submit" name="button" id="button" value="文件开始上传" /> 
  12. </form> 
  13. </body> 
  14. </html> 
  15. <? 
  16. /* 
  17. |   @param: $dir      -- 存放目录,最后加"/" [字串]  
  18. |   @param: $file_var -- 表单变量 [字串]  
  19. |   @param: $max_size -- 设定最大上传值,以k为单位. [整数/浮点数]  
  20. |   @param: $type     -- 限定后辍名(小写),多个用"/"隔开,不限定则留空 [字串]  
  21. |   @param: $name     -- 上传后命名,留空则为原名,true为系统随机定名 [布林值]  
  22. |   return: 上传后文件名 
  23. */ 
  24. function _asupfiles($dir$file_var$max_size=''$type=''$name=false)  
  25. if (!file_exists($dir)) showmsg("上传图片失败:上传目录 ".$dir." 不存在!",0); 
  26. if (!is_writable($dir))  
  27. showmsg("上传图片失败:上传目录 ".$dir." 无法写入!",0); 
  28. exit();  
  29. $upfile=& $_files["$file_var"];  
  30. $upfilename =  $upfile['name'];  
  31. if (!($upfilename===''))  
  32. {  
  33. if (!is_uploaded_file($upfile['tmp_name']))  
  34. {  
  35. showmsg('上传图片失败:你选择的文件无法上传',0); 
  36. exit();  
  37. }  
  38. if ($max_size>0 && $upfile['size']/1024>$max_size)  
  39. {  
  40. showmsg("上传图片失败:文件大小不能超过  ".$max_size."kb",0); 
  41. exit();  
  42. }  
  43. $ext_name = strtolower(str_replace("."""strrchr($upfilename".")));  
  44. if (!($type==='') && strpos($type$ext_name)===false)  
  45. {  
  46. showmsg("上传图片失败:只允许上传 ".$type." 的文件!",0); 
  47. exit();  
  48. ($name==true)?$uploadname=time().mt_rand(100,999).".".$ext_name :''
  49. ($name==false)?$uploadname=$upfilename:''
  50. !is_bool($name)?($uploadname=$name.".".$ext_name):''
  51. //$uploadname = $name ? md5(uniqid(rand())).".".$ext_name : $upfilename;  
  52. if (!move_uploaded_file($upfile['tmp_name'], $dir.$uploadname))  
  53. {  
  54. showmsg('上传图片失败:文件上传出错!',0); 
  55.  exit();  
  56. }  
  57. return $uploadname;  
  58. }  
  59. else  
  60. {  
  61. return '';  
  62. }  
  63. }  
  64. ?> 

Tags: php 文件上传 实例代码

分享到: