VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php上传文件分类实例代码

  1. <?php 
  2. /** 
  3. * 文件上传类 
  4. * @author lijiamin 
  5. * @time 2017-02-17 
  6. * @email 1195989301@qq.com 
  7. */ 
  8. classUpload{ 
  9. private$allowExt=array('gif','jpg','jpeg','bmp','png','swf');//限制文件上传的后缀名 
  10. private$maxSize= 1;//限制最大文件上传1M 
  11. /** 
  12. * 获取文件的信息 
  13. * @param str $flag 上传文件的标识 
  14. * @return arr 上传文件的信息数组 
  15. */ 
  16. publicfunctiongetInfo($flag){ 
  17. return$_FILES[$flag]; 
  18. /** 
  19. * 获取文件的后缀 
  20. * @param str $filename 文件名 
  21. * @return str 文件扩展名 
  22. */ 
  23. publicfunctiongetExt($filename){ 
  24. returnpathinfo($filename,PATHINFO_EXTENSION); 
  25. /** 
  26. * 检测上传文件是否合法 
  27. * @param str $filename 文件名 
  28. * @return bool 文件扩展名是否合法 
  29. */ 
  30. privatefunctioncheckExt($filename){ 
  31. $ext=$this->getExt($filename); 
  32. returnin_array($ext,$this->allowExt); 
  33. /** 
  34. * 检测文件大小是否超过限制 
  35. * @param int size 文件大小 
  36. * @return bool 文件大小是否超过限制 
  37. */ 
  38. publicfunctioncheckSize($size){ 
  39. return$size<$this->maxSize * 1024 * 1024;<!--$this---> 
  40. /** 
  41. * 随机的文件名 
  42. * @param int $len 随机文件名的长度 
  43. * @return str 随机字符串 
  44. */ 
  45. publicfunctionrandName($len=6){ 
  46. returnsubstr(str_shuffle('abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ234565789'),0,$len); 
  47. /** 
  48. * 创建文件上传到的路径 
  49. * @return str 文件上传的路径 
  50. */ 
  51. publicfunctioncreateDir(){ 
  52. //上传文件路径 
  53. $dir='./upload/'.date('Y/m/d',time()); 
  54. //判断文件夹是否存在,不存在则新建 
  55. if(is_dir($dir) ||mkdir($dir,0777,true)){ 
  56. return$dir
  57. /** 
  58. * 文件上传 
  59. * @param str $flag 文件上传标识 
  60. * @return array 返回上传文件名、保存路径 
  61. */ 
  62. publicfunctionuploadFile($flag){ 
  63. if($_FILES[$flag]['name'] ===''||$_FILES[$flag]['error'] !== 0){ 
  64. echo"没有上传文件"
  65. return
  66. $info=$this->getInfo($flag); 
  67. if(!$this->checkExt($info['name'])){ 
  68. echo"不支持的文件类型"
  69. return
  70. if(!$this->checkSize($info['size'])){ 
  71. echo"文件大小超过限制"
  72. return
  73. $filename=$this->randName().'.'.$this->getExt($info['name']); 
  74. $dir=$this->createDir(); 
  75. if(!move_uploaded_file($info['tmp_name'],$dir.'/'.$filename)){ 
  76. echo"文件上传失败"
  77. }else
  78. returnarray('filename'=>$filename,'dir'=>$dir); 
  79. ?> 

出处:http://www.phpfensi.com/php/20180802/11004.html


相关教程