在xampp中使用php上传文件非常慢

时间:2015-04-29 06:18:37

标签: php mysql file-upload upload

我是开发新手。我选择了php来学习编码。所以我可能会犯错误,因为我自己学习,请澄清我的怀疑。 我在使用php将文件上传到文件夹时遇到问题。我真正做的是,我上传了一个文件,文件保存在一个文件夹中,文件名只插入数据库中。在上传文件时,我会将文件复制到另一个文件夹中,该文件夹将用于编辑目的,这样原始文件就不会受到干扰。我遇到的问题是,文件上传成功,以及插入的名称也是如此。数据库。但即使文件的大小很小,上传也需要很长时间。当我使用我的本地测试时它工作得很好但是当我实时出现这个问题(缓慢上传)时我会面对。上传人员所做的是上传文件并打开新浏览器并上传其他文件。打开新浏览器时,文件会上传,但在之前的浏览器中,它仍在进行中。我打算将文件复制到另一个文件夹的代码不会执行,因为打开新浏览器以上载另一组文件。我正在使用xamp cp v3.2.1。为了最小化执行时间,我将默认的最大执行时间设置为30.但无法快速上传文件。

以下是我的php编码:

 <?php 





 // connect to the database
 include('connect-db.php');

 if (isset($_POST['submit']))
 { 
 // get form data, making sure it is valid
 $udate = mysql_real_escape_string(htmlspecialchars($_POST['udate']));
 $file_array=($_FILES['file_array']['name']);



 // check to make sure both fields are entered
 if ($udate == '' || $file_array=='')
 {
 // generate error message
 $error = 'ERROR: Please fill in all required fields!';

 // if either field is blank, display the form again
 renderForm($udate, $file_array, $error);
 }
 else
 {
     $udate = mysql_real_escape_string(htmlspecialchars($_POST['udate']));
if(isset($_FILES['file_array']))
{
    $name_arrray=$_FILES['file_array']['name'];
    $tmp_name_arrray=$_FILES['file_array']['tmp_name'];
    for($i=0;$i <count($tmp_name_arrray); $i++)
    {
        if(move_uploaded_file($tmp_name_arrray[$i],"test_uploads/".str_replace(' ','',$name_arrray[$i])))

        {

                       // save the data to the database
$j=str_replace(' ','',$name_arrray[$i]);
echo $j;
 $udate = mysql_real_escape_string(htmlspecialchars($_POST['udate']));
  $provider = mysql_real_escape_string(htmlspecialchars($_POST['provider']));
  $existfile=mysql_query("select ubatch_file from batches");
  while($existing = mysql_fetch_array( $existfile)) {
      if($j==$existing['ubatch_file'])
    echo'  <script>
function myFunction() {
    alert("file already exists");
}
</script>';

      }

 mysql_query("INSERT IGNORE batches SET udate='$udate', ubatch_file='$j',provider='$provider',privilege='$_SESSION[PRIVILEGE]'")
 or die(mysql_error()); 
        echo $name_arrray[$i]."uploaded completed"."<br>";
        $src = 'test_uploads';
$dst = 'copy_test_uploads';
$files = glob("test_uploads/*.*");
      foreach($files as $file){
      $file_to_go = str_replace($src,$dst,$file);
      copy($file, $file_to_go);

       /* echo "<script type=\"text/javascript\">
                        alert(\"CSV File has been successfully Uploaded.\");
                        window.location = \"uploadbatches1.php\"
                    </script>";*/
      }
        } else
        {
            echo "move_uploaded_file function failed for".$name_array[$i]."<br>";
        }

    }
}

 // once saved, redirect back to the view page
 header("Location:uploadbatches1.php"); 
 }
 }



?>

1 个答案:

答案 0 :(得分:0)

这需要很长时间,因为每次将所有文件都复制到新文件夹。这超过了执行时间。只有复制上传的文件才能快速上传和复制文件。