PHP:如何检索上传并保存在Web服务器上的文件?

时间:2014-06-20 05:07:31

标签: php mysql apache file centos6

我将文件上传到网络服务器(我是管理员)。根据代码,文件的位置为upload /。任何人都可以解释我在哪里可以实际检索我在该服务器上保存的文件?当我运行它时,我得到了

的输出
  

上传:fly.gif
  输入:image / gif
  大小:7.6962890625 kB
  临时文件:/ tmp / phplXtnZG
  存储在:upload / fly.gif

我尝试查看文件夹路径,但在CENTOS计算机上找不到它。

谢谢, linuxuser

<?php
$allowedExts = array("gif", "jpeg", "jpg", "png");
$temp = explode(".", $_FILES["file"]["name"]);
$extension = end($temp);

if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/jpg")
|| ($_FILES["file"]["type"] == "image/pjpeg")
|| ($_FILES["file"]["type"] == "image/x-png")
|| ($_FILES["file"]["type"] == "image/png"))
&& ($_FILES["file"]["size"] < 20000)
&& in_array($extension, $allowedExts)) {
  if ($_FILES["file"]["error"] > 0) {
    echo "Return Code: " . $_FILES["file"]["error"] . "<br>";
  } else {
    echo "Upload: " . $_FILES["file"]["name"] . "<br>";
    echo "Type: " . $_FILES["file"]["type"] . "<br>";
    echo "Size: " . ($_FILES["file"]["size"] / 1024) . " kB<br>";
    echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br>";
    if (file_exists("upload/" . $_FILES["file"]["name"])) {
      echo $_FILES["file"]["name"] . " already exists. ";
    } else {
      move_uploaded_file($_FILES["file"]["tmp_name"],
      "upload/" . $_FILES["file"]["name"]);
      echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
    }
  }
} else {
  echo "Invalid file";
}
?> 

1 个答案:

答案 0 :(得分:0)

它存储在/home/admin/web/upload/fly.gif