上传服务器上的文件

时间:2013-07-24 15:45:12

标签: php

我正在编写一个应用程序,用户将在该应用程序上上传文件。我发现了一个来自互联网的PHP脚本,但我不知道如何告诉脚本上传数据的位置。这可能是一个愚蠢的问题,但我不是PHP程序员。我在我的java代码中使用这个php脚本。

这是脚本。

<?php
  $filename="abc.xyz";
  $fileData=file_get_contents('php://input');
  echo("Done uploading");
?>

此致

3 个答案:

答案 0 :(得分:1)

这是一种上传文件的糟糕方式,使用表单和$_FILES超全局更好。

看看W3Schools PHP File Upload Tutorial;请阅读所有内容。如需进一步阅读,请查看文件上传的PHP Manual页。

file输入类型将以html格式创建上传框:

<form action="upload_file.php" method="post"
enctype="multipart/form-data">
    <label for="file">Filename:</label>
    <input type="file" name="file" id="file"><br>
    <input type="submit" name="submit" value="Submit">
</form>

错误检查并验证文件是您所期望的(非常重要:允许用户将任何上传到您的服务器是一个巨大的安全风险),您可以将上传的文件移动到您的PHP中服务器上的最终目的地。

move_uploaded_file($_FILES["file"]["tmp_name"], "upload/abc.xyz");

答案 1 :(得分:0)

文件名实际上是文件路径以及新文件的名称,在那里设置路径,并创建一个具有写权限的文件。

确保您为服务器提供完整路径而不是相关路径,并且您具有在那里创建文件所需的权限。

答案 2 :(得分:0)

始终参考PHP Manual

以下是帮助您入门的基本示例:

<强> HTML:

<html> 
<body>
  <form enctype="multipart/form-data" action="upload.php" method="post">
    <input type="hidden" name="MAX_FILE_SIZE" value="1000000" />
    Choose a file to upload: <input name="uploaded_file" type="file" />
    <input type="submit" value="Upload" />
  </form> 
</body> 
</html>

<强> PHP:

<?php
//Сheck that we have a file
if((!empty($_FILES["uploaded_file"])) && ($_FILES['uploaded_file']['error'] == 0)) {
  //Check if the file is JPEG image and it's size is less than 350Kb
  $filename = basename($_FILES['uploaded_file']['name']);
  $ext = substr($filename, strrpos($filename, '.') + 1);
  if (($ext == "jpg") && ($_FILES["uploaded_file"]["type"] == "image/jpeg") && 
    ($_FILES["uploaded_file"]["size"] < 350000)) {
    //Determine the path to which we want to save this file
      $newname = dirname(__FILE__).'/upload/'.$filename;
      //Check if the file with the same name is already exists on the server
      if (!file_exists($newname)) {
        //Attempt to move the uploaded file to it's new place
        if ((move_uploaded_file($_FILES['uploaded_file']['tmp_name'],$newname))) {
           echo "It's done! The file has been saved as: ".$newname;
        } else {
           echo "Error: A problem occurred during file upload!";
        }
      } else {
         echo "Error: File ".$_FILES["uploaded_file"]["name"]." already exists";
      }
  } else {
     echo "Error: Only .jpg images under 350Kb are accepted for upload";
  }
} else {
 echo "Error: No file uploaded";
}
?>

有关详细信息,请参阅documention

希望这有帮助!