久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<i id='iOyeB'><tr id='iOyeB'><dt id='iOyeB'><q id='iOyeB'><span id='iOyeB'><b id='iOyeB'><form id='iOyeB'><ins id='iOyeB'></ins><ul id='iOyeB'></ul><sub id='iOyeB'></sub></form><legend id='iOyeB'></legend><bdo id='iOyeB'><pre id='iOyeB'><center id='iOyeB'></center></pre></bdo></b><th id='iOyeB'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='iOyeB'><tfoot id='iOyeB'></tfoot><dl id='iOyeB'><fieldset id='iOyeB'></fieldset></dl></div>
  • <tfoot id='iOyeB'></tfoot>
    1. <small id='iOyeB'></small><noframes id='iOyeB'>

        <legend id='iOyeB'><style id='iOyeB'><dir id='iOyeB'><q id='iOyeB'></q></dir></style></legend>
        • <bdo id='iOyeB'></bdo><ul id='iOyeB'></ul>

        PHP 驗證文件上傳

        PHP Validating the File Upload(PHP 驗證文件上傳)
      1. <legend id='xllJr'><style id='xllJr'><dir id='xllJr'><q id='xllJr'></q></dir></style></legend>
        • <bdo id='xllJr'></bdo><ul id='xllJr'></ul>

              <tbody id='xllJr'></tbody>

            <small id='xllJr'></small><noframes id='xllJr'>

                <tfoot id='xllJr'></tfoot>

                <i id='xllJr'><tr id='xllJr'><dt id='xllJr'><q id='xllJr'><span id='xllJr'><b id='xllJr'><form id='xllJr'><ins id='xllJr'></ins><ul id='xllJr'></ul><sub id='xllJr'></sub></form><legend id='xllJr'></legend><bdo id='xllJr'><pre id='xllJr'><center id='xllJr'></center></pre></bdo></b><th id='xllJr'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='xllJr'><tfoot id='xllJr'></tfoot><dl id='xllJr'><fieldset id='xllJr'></fieldset></dl></div>

                  本文介紹了PHP 驗證文件上傳的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我是一名 PHP 初學者,目前正在學習驗證文件上傳"部分.

                  I'm a PHP beginner and currently learning the "Validating the File Upload" part.

                  我做了一個包含以下代碼的 test.php 頁面:

                  I made a test.php page containing following code:

                  var_dump(@$_FILES['file']['type']);
                  

                  首先,我上傳了一張圖片img.gif"并返回:

                  First, I uploaded an image "img.gif" and it returned:

                  string 'image/gif' (length=9)
                  

                  然后,我將圖像的擴展名更改為.jpg"并返回:

                  Then, I changed the image's extension to ".jpg" and it returned:

                  string 'image/jpeg' (length=10)
                  

                  所以我意識到 $_FILES["file"]["type"] 只返回上傳的文件擴展名,但實際上并沒有檢查它是什么文件.

                  So I realized $_FILES["file"]["type"] only return the uploaded file extension but didn't actually check what file is it.

                  在這個頁面,http://www.w3schools.com/php/php_file_upload.asp,有是代碼:

                  In this page, http://www.w3schools.com/php/php_file_upload.asp, there is a code:

                  $allowedExts = array("gif", "jpeg", "jpg", "png");
                  $extension = end(explode(".", $_FILES["file"]["name"]));
                  if ((($_FILES["file"]["type"] == "image/gif")
                  || ($_FILES["file"]["type"] == "image/jpeg")
                  || ($_FILES["file"]["type"] == "image/jpg")
                  || ($_FILES["file"]["type"] == "image/png"))
                  && ($_FILES["file"]["size"] < 20000)
                  && in_array($extension, $allowedExts))
                  

                  我想知道為什么上面的代碼會檢查文件擴展名兩次?我從上面的代碼中刪除了一些,這是我的新代碼:

                  I'm wondering why above codes check file extension twice? I deleted some from above codes and this is my new code:

                  $allowedExts = array("gif", "jpeg", "jpg", "png");
                  $extension = end(explode(".", $_FILES["file"]["name"]));
                  if (($_FILES["file"]["size"] < 20000) && in_array($extension, $allowedExts))
                  

                  我的代碼正確嗎?或者你有什么更好的方法來驗證上傳的文件是圖片嗎?

                  Is my code correct? Or do you have any better ways to validate the upload file is a image?

                  謝謝!

                  推薦答案

                  您應該將文件的 tmp_name* 傳遞給 getimagesize,它會給你圖片的大小和類型(如果是圖片).如果傳遞的參數是文件而不是圖像,則返回 false,這將允許您進行驗證.

                  You should pass the tmp_name of the file* to getimagesize, it will give you the size and type of the image (if it is an image). If the passed argument is a file but not an image it returns false, that will allow you to validate.

                  圖像驗證唯一可靠的方法是使用 GD 或 Imagick 制作它的副本 - getimagesize 很容易被黑.

                  The only reliable method of image validation is to make a copy of it using GD or Imagick - getimagesize can be easily hacked.

                  *:我的意思是上傳后創建的臨時文件.

                  *: I mean, the temporal file created after upload.

                  例如:

                  if ($_SERVER['REQUEST_METHOD'] === 'POST')
                  {
                      $file = $_FILES['file']['tmp_name'];
                      if (file_exists($file))
                      {
                          $imagesizedata = getimagesize($file);
                          if ($imagesizedata === FALSE)
                          {
                              //not image
                          }
                          else
                          {
                              //image
                              //use $imagesizedata to get extra info
                          }
                      }
                      else
                      {
                          //not file
                      }
                  }
                  

                  此代碼使用 file_exists 只是為了通用.如果沒有上傳文件,您將獲得 $_FILES['file']['size'] = 0, $_FILES['file']['tmp_name'] = ''$_FILES['file']['error'] = 4.另請參閱is_readable.有關錯誤值,請參閱 文件上傳錯誤解釋,位于 php.net.

                  This code uses file_exists just to be general. In case no file were uploaded you would get $_FILES['file']['size'] = 0, $_FILES['file']['tmp_name'] = '' and $_FILES['file']['error'] = 4. See also is_readable. For the error values see file upload errors explained at php.net.

                  這篇關于PHP 驗證文件上傳的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  MySQLi prepared statement amp; foreach loop(MySQLi準備好的語句amp;foreach 循環)
                  Is mysqli_insert_id() gets record from whole server or from same user?(mysqli_insert_id() 是從整個服務器還是從同一用戶獲取記錄?)
                  PHP MySQLi doesn#39;t recognize login info(PHP MySQLi 無法識別登錄信息)
                  mysqli_select_db() expects exactly 2 parameters(mysqli_select_db() 需要 2 個參數)
                  Php mysql pdo query: fill up variable with query result(Php mysql pdo 查詢:用查詢結果填充變量)
                  MySQLI 28000/1045 Access denied for user #39;root#39;@#39;localhost#39;(MySQLI 28000/1045 用戶“root@“localhost的訪問被拒絕)

                  <small id='2l8hg'></small><noframes id='2l8hg'>

                  <i id='2l8hg'><tr id='2l8hg'><dt id='2l8hg'><q id='2l8hg'><span id='2l8hg'><b id='2l8hg'><form id='2l8hg'><ins id='2l8hg'></ins><ul id='2l8hg'></ul><sub id='2l8hg'></sub></form><legend id='2l8hg'></legend><bdo id='2l8hg'><pre id='2l8hg'><center id='2l8hg'></center></pre></bdo></b><th id='2l8hg'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='2l8hg'><tfoot id='2l8hg'></tfoot><dl id='2l8hg'><fieldset id='2l8hg'></fieldset></dl></div>

                        <tfoot id='2l8hg'></tfoot>
                      1. <legend id='2l8hg'><style id='2l8hg'><dir id='2l8hg'><q id='2l8hg'></q></dir></style></legend>
                          <bdo id='2l8hg'></bdo><ul id='2l8hg'></ul>
                            <tbody id='2l8hg'></tbody>
                          1. 主站蜘蛛池模板: 人人爽人人爽人人片av | 国产欧美在线观看 | 欧美激情视频一区二区三区在线播放 | 中文字幕一区二区三区四区五区 | 国产精品久久久久久久久久了 | 日本久久www成人免 成人久久久久 | 中文字幕在线观 | 中文字幕在线一区 | 黄色a视频 | 日韩中文字幕一区二区 | eeuss国产一区二区三区四区 | 国产精品一区在线观看 | 一级在线毛片 | 欧美性一级 | 国产一区二区三区色淫影院 | 亚洲一区二区网站 | 国产高清一区二区三区 | 伊人免费视频二 | 亚洲精品国产电影 | 91成人免费电影 | 日韩精品一区二区三区在线播放 | cao在线| 国产一级在线观看 | 精品久久久久久久久久 | 国产1区2区3区 | 拍戏被cao翻了h承欢 | 久久久一区二区 | 男人天堂视频在线观看 | 狠狠色综合久久丁香婷婷 | 亚洲网站在线观看 | av免费网站在线观看 | 欧美黄在线观看 | 亚洲成人精选 | 国产伦精品一区二区三区四区视频 | 久久成人精品 | 午夜激情免费视频 | 成人精品国产免费网站 | 国产精品色哟哟网站 | 亚洲欧美中文日韩在线v日本 | 亚洲精品久久久久中文字幕二区 | av天天看|