VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • PHP多文件上传理解总结

上传文件HTML的输入标签FILE类型中的名称后要加[],作用是在HTML中向PHP建立数组,比如名称为pictures,多文件引用名称则为pictures[],实例代码如下:

  1. <form action=”upload.php” method=”post” enctype=”multipart/form-data”> 
  2. <p> 
  3. <input type=”file” name=”pictures[]” /><br /> 
  4. <input type=”file” name=”pictures[]” /><br /> 
  5. <input type=”file” name=”pictures[]” /><br /> 
  6. <input type=”submit” value=”上传” /> 
  7. </p> 
  8. </form> 

手册中实例,选择文件后点击上传,代码如下:

<?php print_r($_FILES); ?>

查看源文件,代码如下:

  1. Array 
  2. [pictures] => Array 
  3. [name] => Array 
  4. [0] => file1.txt 
  5. [1] => file2.txt 
  6. [2] => file3.txt 
  7. [type] => Array 
  8. [0] => application/octet-stream 
  9. [1] => application/octet-stream 
  10. [2] => application/octet-stream 
  11. [tmp_name] => Array 
  12. [0] => D:EasyPHP\tmpphp47.tmp 
  13. [1] => D:EasyPHP\tmpphp48.tmp 
  14. [2] => D:EasyPHP\tmpphp49.tmp 
  15. [error] => Array 
  16. [0] => 0 
  17. [1] => 0 
  18. [2] => 0 
  19. [size] => Array 
  20. [0] => 94289 
  21. [1] => 65536 
  22. [2] => 102400 

假设名为 /file1.txt和 /file2.txt 的文件被提交,则 $_FILES['pictures']['name'][0] 的值将是 file1.txt,而 $_FILES['pictures']['name'][1] 的值将是 file2.txt。类似的,$_FILES['file2.txt']['size'][0] 将包含文件 file1.txt 的大小,有了上面信息了我们要实现多文件上传就简单了,代码如下:

  1. <?php 
  2.  
  3. class upload {  
  4. public $up_ext=array(), $up_max=5210, $up_dir;  
  5. private $up_name$up_rename=true, $up_num=0, $up_files=array(), $up_ret=array(); 
  6.  
  7. function __construct($name$ext=array(), $rename=true) {  
  8. if (!emptyempty($name)) {  
  9. $this->up_name = $name;  
  10. !emptyempty($ext) && $this->up_ext = $ext;  
  11. $this->up_rename = $rename;  
  12. $this->up_dir = website_dirroot.  
  13. $globals['cfg_upload_path'];  
  14. $this->initupload();  
  15. else {  
  16. exit('upload文件域名称为空,初始化失败!');  
  17. }  
  18.  
  19. private function initupload() {  
  20. if (is_array($_files[$this->up_name])) {  
  21. $up_arr = count($_files[$this->up_name]);  
  22. $up_all = count($_files[$this->up_name], 1);  
  23. $up_cnt = ($up_all - $up_arr) / $up_arr;  
  24. for ($i = 0; $i < $up_cnt$i ++) {  
  25. if ($_files[$this->up_name]['error'][$i] != 4) {  
  26. $this->up_files[] = array(  
  27. 'tmp_name' => $_files[$this->up_name]['tmp_name'][$i],  
  28. 'name' => $_files[$this->up_name]['name'][$i],  
  29. 'type' => $_files[$this->up_name]['type'][$i],  
  30. 'size' => $_files[$this->up_name]['size'][$i],  
  31. 'error' => $_files[$this->up_name]['error'][$i]  
  32. );  
  33. }  
  34. }  
  35. $this->up_num = count($this->up_files);  
  36. else {  
  37. if (isset($_files[$this->up_name])) {  
  38. $this->up_files = array(  
  39. 'tmp_name' => $_files[$this->up_name]['tmp_name'],  
  40. 'name' => $_files[$this->up_name]['name'],  
  41. 'type' => $_files[$this->up_name]['type'],  
  42. 'size' => $_files[$this->up_name]['size'],  
  43. 'error' => $_files[$this->up_name]['error']  
  44. );  
  45. $this->up_num = 1;  
  46. else {  
  47. exit('没找找到需要upload的文件!');  
  48. }  
  49.  
  50. $this->chkupload();  
  51.  
  52. private function chkupload() {  
  53. if (emptyempty($this->up_ext)) {  
  54. $up_mime = array('image/wbmp''image/bmp''image/gif''image/pjpeg''image/x-png');  
  55. foreach ($this->up_files as $up_file) {  
  56. $up_allw = false;  
  57. foreach ($up_mime as $mime) {  
  58. if ($up_file['type'] == $mime) {  
  59. $up_allw = true; break;  
  60. }  
  61. }  
  62. !$up_allw && exit('不允许上传'.$up_file['type'].'格式的文件!'); 
  63.  
  64. if ($up_file['size'] / 1024 > $this->up_max) {  
  65. exit('不允许上传大于 '.$this->up_max.'k 的文件!');  
  66. }  
  67. }  
  68. else {  
  69. foreach ($this->up_files as $up_file) {  
  70. $up_ext = end(explode('.'$up_file['name'])); 
  71.  
  72. $up_allw = false;  
  73. foreach ($this->up_ext as $ext) {  
  74. if ($up_ext == $ext) {  
  75. $up_allw = true; break;  
  76. }  
  77. }  
  78. !$up_allw && exit('不允许上传.'.$up_ext.'格式的文件!'); 
  79.  
  80. if ($up_file['size'] / 1024 > $this->up_max) {  
  81. exit('不允许上传大于 '.$this->up_max.'k 的文件!');  
  82. }  
  83. }  
  84.  
  85. $this->uploading();  
  86.  
  87. private function uploading() {  
  88. if (io::dircreate($this->up_dir)) {  
  89. if (chmod($this->up_dir, 0777)) {  
  90. if (!emptyempty($this->up_files)) {  
  91. foreach ($this->up_files as $up_file) {  
  92. if (is_uploaded_file($up_file['tmp_name'])) {  
  93. $file_name = $up_file['name'];  
  94. if ($this->up_rename) {  
  95. $file_ext = end(explode('.'$file_name));  
  96. $file_rnd = substr(md5(uniqid()), mt_rand(0, 26), 6);  
  97. $file_name = date('ymdhis').'_'.$file_rnd.'.'.$file_ext;  
  98. }  
  99. $file_name = $this->up_dir.'/'.$file_name
  100.  
  101. if (move_uploaded_file($up_file['tmp_name'], $file_name)) {  
  102. $this->up_ret[] = str_replace(website_dirroot, ''$file_name);  
  103. else {  
  104. exit('文件上传失败!');  
  105. }  
  106. }  
  107. }  
  108. }  
  109. else {  
  110. exit('未开启写入权限!');  
  111. }  
  112. else {  
  113. exit('上传目录创建失败!');  
  114. //开源代码phpfensi.com 
  115.  
  116. public function getupload() {  
  117. return emptyempty($this->up_ret) ? false : $this->up_ret;  
  118.  
  119. function __destruct() {}  
  120. }  
  121. ?> 

在上面我们会看到一个for ($i = 0; $i < $up_cnt; $i ++),这个是遍历我们上面讲的一个个实例了.

 


出处:http://www.phpfensi.com/php/20140828/4908.html
 


相关教程