当前位置:七道奇文章资讯网站建设网站编程
日期:2010-11-06 08:57:00  来源:本站整理

php文件上传代码(支持文件批量上传)[网站编程]

赞助商链接



  本文“php文件上传代码(支持文件批量上传)[网站编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

php文件上传代码(支持文件批量上传)

本款文件上传类,默许是上传单文件的,我们只要改正$inputname ='files'为你的表单名便可以便利的实现批量文件上传了. $savename = ''保存文件名, $alowexts = array()设置答应上传的范例,$savepath = ''保存途径.
 

  1. */  
  2.  
  3. class upload  
  4. {  
  5. public $savepath;  
  6. public $files;  
  7. private $error;  
  8.  
  9. function __construct($inputname ='files'$savepath = ''$savename = ''$alowexts = array(),$maxsize = 1024000)  
  10. {  
  11. if(!$alowexts)$alowexts=explode('|',upload_ftype);  
  12. $file_array=array();  
  13. $savepath=str_replace('','/',$savepath);  
  14. $savename=preg_replace('/[^a-z0-9_]+/i','',$savename);  
  15. $this->savepath=substr($savepath,-1)=='/'?$savepath:$savepath.'/'//途径名以/末尾  
  16.  
  17. if(!make_dir($this->savepath))  
  18. {  
  19. $this->error=8;  
  20. $this->error();  
  21. }  
  22. //exit($this->savepath);  
  23. if(!is_writeable($this->savepath))  
  24. {  
  25. $this->error=9;  
  26. $this->error();  
  27. }  
  28. if(sizeof($_files[$inputname]['error'])>10)  
  29. {  
  30. $this->error=13;  
  31. $this->error();  
  32. }  
  33. $max=sizeof($_files[$inputname]['error'])-1;  
  34. //exit($this->savepath.$savename);  
  35. foreach($_files[$inputname]['error'as $key => $error)  
  36. {  
  37. if($error==upload_err_ok) //批量上传  
  38. {  
  39. $savename=$savename?$savename:date('ymdims').mt_rand(10000,99999);   
  40. $fileext=strtolower(get_fileext($_files[$inputname]['name'][$key]));  
  41. $savename=$savename.'.'.$fileext;  
  42. $tmp_name=$_files[$inputname]['tmp_name'][$key];  
  43. $filesize=$_files[$inputname]['size'][$key];  
  44. if(!in_array($fileext,$alowexts))  
  45. {  
  46. $this->error=10;  
  47. $this->error();  
  48. }  
  49. if($filesize>$maxsize)  
  50. {  
  51. $this->error=11;  
  52. $this->error();  
  53. }  
  54. if(!$this->isuploadedfile($tmp_name))  
  55. {  
  56. $this->error=12;  
  57. $this->error();  
  58. }  
  59.  
  60. if(move_uploaded_file($tmp_name,$this->savepath.$savename) || @copy($tmp_name,$this->savepath.$savename))  
  61. {  
  62. //exit($this->savepath.$savename);  
  63. @chmod($savename, 0644);  
  64. @unlink($tmp_name);  
  65. $file_array[]=$this->savepath.$savename;   
  66. }  
  67. }  
  68. else 
  69. {  
  70. $this->error=$error;  
  71. $this->error();  
  72. }  
  73. unset($savename);  
  74. }  
  75. $this->files=$file_array;  
  76. return true;  
  77. }  
  78.  
  79. function isuploadedfile($file//去掉系统自带的反斜线  
  80. {  
  81. return (is_uploaded_file($file) || is_uploaded_file(str_replace('\','',$file)));   
  82. }  
  83.  
  84. function error()  
  85. {  
  86. $upload_error=array(0 => '文件上传成功 !',  
  87. 1 => '上传的文件超越了 php.ini 中 upload_max_filesize 选项限制的值 !',  
  88. 2 => '上传文件的大小超越了 html 表单中 max_file_size 选项指定的值 !',  
  89. 3 => '文件只有部份被上传 !',  
  90. 4 => '没有文件被上传 !',  
  91. 5 => '未知错误!',  
  92. 6 => '找不到暂时文件夹. !',  
  93. 7 => '文件写入暂时文件夹失利 !',  
  94. 8 => '附件目录成立失利 !',  
  95. 9 => '附件目录没有写入权限 !',  
  96. 10 => '不答应上传该范例文件 !',  
  97. 11 => '文件超越了管理员限定的大小 !',  
  98. 12 => '不法上传文件 !',  
  99. 13 => '最多可同时上传10个文件 !' 
  100. );  
  101. showmsg($upload_error[$this->error]);  
  102. }  
  103.  
  104. }  
  105. //利用办法  
  106.  
  107. new upload();  

  以上是“php文件上传代码(支持文件批量上传)[网站编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • apache限制某个目录下的php文件没有履行权限
  • 禁止指定目录履行php文件
  • php文件上传与move_uploaded_file
  • php文件读写操作实例代码
  • php文件缓存技术实现代码
  • php文件上传代码(支持文件批量上传)
  • WordPress 2.8.5 无限制肆意上传PHP文件履行
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .