使用FOR循环一次上传多个文件时,上传将无法正确验证

时间:2011-01-18 10:54:35

标签: php validation file-upload

相当新的PHP,我目前正在尝试验证多个上传,但似乎没有任何效果。我已经筋疲力尽了几乎所有能找到的资源。

对不起,这个FOR循环中有很多内容。我的代码如下:

function processForm() 
{ 

    for($i=0; $i < VAR_UPLOAD_FIELDS; $i++) 
    { 
        echo "Upload field $i "; 

        if(!empty($_FILES[file][size][$i])) 
        { 

        //********************* 
        //START OF TEST CODE FOR VALIDATION. 

        //*********************** 
            $fileName     = $_FILES[file][name][$i]; 

        // get file name (not including path) 
        $file_basename = substr($fileName, -4, strripos($fileName, '.')); 

        $file_ext = substr($file_basename, strripos($file_basename, '.')); 

        $file_ext = @substr($file_ext, 1); // remove dot 


        // check file type if needed 
        if (count($exts)) {    
            if (!in_array($file_ext[i], $exts)) 
          { 
            echo "Files of this type are not allowed for upload."; 
            break; 
          } 
        } 

                            $newLocation     = VAR_UPLOAD_DIRECTORY.$fileName; 
            $filesize = intval($_FILES["filename"]["size"]); 


            //***************************** 
            // Code to add information of uploads to database 
            //***************************** 

                if (DO_LOG) { 
  // Establish DB connection 
  $link = @mysql_connect(DB_HOST, DB_USERNAME, DB_PASSWORD); 
  if (!$link) { 
    $errors[] = "Could not connect to mysql."; 
    break; 
  } 
  $res = @mysql_select_db(DB_DATABASE, $link); 
  if (!$res) { 
    $errors[] = "Could not select database."; 
    break; 
  } 
  $m_ip = mysql_real_escape_string($_SERVER['REMOTE_ADDR']); 
  $m_size = $filesize; 
  $m_fname = mysql_real_escape_string($fileName); 
  $sql = "insert into test_uploads_log (log_filename,log_size,log_ip) values ('$m_fname','$m_size','$m_ip')"; 
  $res = @mysql_query($sql); 
  if (!$res) { 
    $errors[] = "Could not run query."; 
    break; 
  } 
  @mysql_free_result($res); 
  @mysql_close($link); 
} 
            //***************************** 
            // End of database code 
            //***************************** 



            //Files copied to location. 
            if(!copy($_FILES[file][tmp_name][$i],$newLocation)) 
            { 
                echo "<b>Failed - ".$_FILES[file][name][$i]." would not copy to ".$newLocation."</b> (Check your upload directory and permissions)"; 
            } 
            else 
            { 
                ###/ SUCCESS /### 

                #/ Stripping of VAR_BASE_DIRECTORY for better viewing and linking 
                // $urlShow = str_replace(VAR_BASE_DIRECTORY,'',$newLocation); 
                $urlShow = $newLocation;                      


                echo "<b> Uploaded successfully - <a href=\"$urlShow\" target=\"_blank\">$urlShow</a></b>"; 
            } 
        } 

        else 
        { 
            echo "<b>No file uploaded</b>"; 
        } 
        echo "<br />"; 
    } 
    return; 
} 

现在上传文件,并将它们的详细信息添加到数据库中,FOR循环遍历这个没有问题。但问题是,我不知道为什么它一直忽略代码的验证位。我上面声明了一个数组

$exts = array('dxf','dwg','pdf','sldrw','sldrt','bmp','txt');

循环似乎完全被忽略了:

        // check file type if needed 
        if (count($exts)) {    
            if (!@in_array($file_ext[i], $exts)) 
          { 
            echo "Files of this type are not allowed for upload."; 
            break; 
          } 
        } 

我上传了jpgs,jpegs,gifs,GIF,基本上我试图限制的任何东西,一切仍然上传很好。什么都没有得到正确验证。这些值甚至被添加到数据库中。任何人都可以阐明我做错了什么吗?为什么不调用echo和break ??

三江源。

哈根达斯。

2 个答案:

答案 0 :(得分:0)

不应该有i$file_ext不是数组,只是扩展值

if (!@in_array($file_ext, $exts)) 

答案 1 :(得分:0)

那是因为PHP无法找到一个名为$exts的非局部变量(我看不到它在你的函数中定义)

你有两种方式:

  • 在您的函数
  • 中将该变量定义为global $vars
  • 将其定义为本地变量