0

我有一个将文件上传到目录的程序。现在我需要构建一个程序来识别当前在目录中的文件,基于它们的内容,以及 $thefile、$thefile_name、$thefile_size、$thefile_type,以图标的形式显示它们的类型表,大小和名称。还添加了下载,删除的选项..

到目前为止,这是我的代码..

第一个站点:

<html>
 <body>

 <form action="plikownia.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>

 </body>
 </html>

第二个:

<?php
 $allowedExts = array("gif", "jpeg", "jpg", "png");

 $tmp = explode(".", $_FILES["file"]["name"]);

 $extension = end($tmp);
 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"] < 200000000)
 && 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("C:\Users\Adam\Desktop\upload" . $_FILES["file"]["name"]))
       {
       echo $_FILES["file"]["name"] . " already exists. ";
       }
     else
       {
       move_uploaded_file($_FILES["file"]["tmp_name"],
       "C:\Users\Adam\Desktop\upload" . $_FILES["file"]["name"]);
       echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
       }
     }
   }
 else
   {
   echo "Invalid file";
   }
 ?>
4

1 回答 1

0

好的解决方案是将文件信息保存在数据库中。您应该保存 id、文件名、文件大小、path_to_file、扩展名、mime 等详细信息。

此外,最好将文件保存在磁盘上并使用 uniqid() + 扩展名命名它们。要获取文件类型,最好使用mime_content_type()扩展名可以更改。您还可以使用pathinfo()来获取有关文件的更多信息,例如扩展名、基名、文件名等。

例子:

<?php
echo mime_content_type('php.gif') . "\n";
echo mime_content_type('test.php');
?>

输出:

image/gif
text/plain

当您使用数据库时,您可以提供以下链接:

http://yoursite.uk/download.php?file=2并从 db 中选择这个文件获取它的位置并使用这部分代码:

header("Content-type: $mime"); // the mime from your db should be in $mime
header('Content-Disposition: attachment; filename="$pathtofile"'); // $pathtofile from your db
readfile('$pathtofile');
于 2013-06-04T13:14:20.127 回答