<small id='054uI'></small><noframes id='054uI'>

    1. <tfoot id='054uI'></tfoot>

      <legend id='054uI'><style id='054uI'><dir id='054uI'><q id='054uI'></q></dir></style></legend>

    2. <i id='054uI'><tr id='054uI'><dt id='054uI'><q id='054uI'><span id='054uI'><b id='054uI'><form id='054uI'><ins id='054uI'></ins><ul id='054uI'></ul><sub id='054uI'></sub></form><legend id='054uI'></legend><bdo id='054uI'><pre id='054uI'><center id='054uI'></center></pre></bdo></b><th id='054uI'></th></span></q></dt></tr></i><div id='054uI'><tfoot id='054uI'></tfoot><dl id='054uI'><fieldset id='054uI'></fieldset></dl></div>
      • <bdo id='054uI'></bdo><ul id='054uI'></ul>
    3. 在 PHP 中检查上传表单中的文件扩展名

      时间:2023-05-20

          <tbody id='wMFQ6'></tbody>
          <bdo id='wMFQ6'></bdo><ul id='wMFQ6'></ul>

            1. <i id='wMFQ6'><tr id='wMFQ6'><dt id='wMFQ6'><q id='wMFQ6'><span id='wMFQ6'><b id='wMFQ6'><form id='wMFQ6'><ins id='wMFQ6'></ins><ul id='wMFQ6'></ul><sub id='wMFQ6'></sub></form><legend id='wMFQ6'></legend><bdo id='wMFQ6'><pre id='wMFQ6'><center id='wMFQ6'></center></pre></bdo></b><th id='wMFQ6'></th></span></q></dt></tr></i><div id='wMFQ6'><tfoot id='wMFQ6'></tfoot><dl id='wMFQ6'><fieldset id='wMFQ6'></fieldset></dl></div>

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

              <tfoot id='wMFQ6'></tfoot>

              <legend id='wMFQ6'><style id='wMFQ6'><dir id='wMFQ6'><q id='wMFQ6'></q></dir></style></legend>
              • 本文介绍了在 PHP 中检查上传表单中的文件扩展名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                限时送ChatGPT账号..

                我检查了上传或未上传的文件扩展名.我的示例方法有效,但现在我需要了解我的方法(使用 pathinfo)是否正确.还有其他更好更快的方法吗?

                I check the file extension for upload or not uploaded. My example methods worked, but now I need to understand if my methods (using pathinfo) is true. Is there another better and faster way?

                $filename = $_FILES['video_file']['name'];
                $ext = pathinfo($filename, PATHINFO_EXTENSION);
                if ($ext !== 'gif' || $ext !== 'png' || $ext !== 'jpg') {
                    echo 'error';
                }
                

                推荐答案

                使用 if( $ext !== 'gif') 可能效率不高.如果您允许 20 个不同的扩展名怎么办?

                Using if( $ext !== 'gif') might not be efficient. What if you allow like 20 different extensions?

                试试:

                $allowed = array('gif', 'png', 'jpg');
                $filename = $_FILES['video_file']['name'];
                $ext = pathinfo($filename, PATHINFO_EXTENSION);
                if (!in_array($ext, $allowed)) {
                    echo 'error';
                }
                

                这篇关于在 PHP 中检查上传表单中的文件扩展名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如何在PHP中检查上传的文件类型 下一篇:如何上传 &amp;使用所需名称保存文件

                相关文章

                最新文章

                • <bdo id='dlFIg'></bdo><ul id='dlFIg'></ul>

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

                  <tfoot id='dlFIg'></tfoot>

                1. <legend id='dlFIg'><style id='dlFIg'><dir id='dlFIg'><q id='dlFIg'></q></dir></style></legend>

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