对文件的操作

时间:2013-06-04 13:02:58

标签: php file operation

我有一个将文件上传到目录的程序。现在我需要构建一个程序,根据它们的内容,以及$ 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";
   }
 ?>

1 个答案:

答案 0 :(得分:0)

好的解决方案是在数据库中保存文件信息。您应该保存id,filename,filesize,path_to_file,extension,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');