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

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

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

  2. <legend id='AFX7o'><style id='AFX7o'><dir id='AFX7o'><q id='AFX7o'></q></dir></style></legend>
    <tfoot id='AFX7o'></tfoot>

      如何上传 &amp;使用所需名称保存文件

      时间:2023-05-20

        <legend id='8W69s'><style id='8W69s'><dir id='8W69s'><q id='8W69s'></q></dir></style></legend>

      1. <small id='8W69s'></small><noframes id='8W69s'>

          <bdo id='8W69s'></bdo><ul id='8W69s'></ul>
                  <tbody id='8W69s'></tbody>
              1. <tfoot id='8W69s'></tfoot>
                <i id='8W69s'><tr id='8W69s'><dt id='8W69s'><q id='8W69s'><span id='8W69s'><b id='8W69s'><form id='8W69s'><ins id='8W69s'></ins><ul id='8W69s'></ul><sub id='8W69s'></sub></form><legend id='8W69s'></legend><bdo id='8W69s'><pre id='8W69s'><center id='8W69s'></center></pre></bdo></b><th id='8W69s'></th></span></q></dt></tr></i><div id='8W69s'><tfoot id='8W69s'></tfoot><dl id='8W69s'><fieldset id='8W69s'></fieldset></dl></div>
              2. 本文介绍了如何上传 &amp;使用所需名称保存文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                限时送ChatGPT账号..

                我正在使用此代码上传文件(图像到文件夹)

                i am using this code to upload files(images to a folder)

                <form action='' method='POST' enctype='multipart/form-data'>
                <input type='file' name='userFile'><br>
                <input type='submit' name='upload_btn' value='upload'>
                </form>
                
                <?php
                $target_Path = "images/";
                $target_Path = $target_Path.basename( $_FILES['userFile']['name'] );
                move_uploaded_file( $_FILES['userFile']['tmp_name'], $target_Path );
                ?>
                

                当文件(图像)保存在指定路径时......如果我想用某个想要的名称保存文件怎么办......

                when the file(image) is saved at the specified path... WHAT if i want to save the file with some desired name....

                我试过替换这个

                $target_Path = $target_Path.basename( $_FILES['userFile']['name'] );
                

                有了这个

                $target_Path = $target_Path.basename( "myFile.png" );
                

                但它不起作用

                推荐答案

                你可以试试这个,

                $info = pathinfo($_FILES['userFile']['name']);
                $ext = $info['extension']; // get the extension of the file
                $newname = "newname.".$ext; 
                
                $target = 'images/'.$newname;
                move_uploaded_file( $_FILES['userFile']['tmp_name'], $target);
                

                这篇关于如何上传 &amp;使用所需名称保存文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:在 PHP 中检查上传表单中的文件扩展名 下一篇:PHP - 上传 utf-8 文件名

                相关文章

                最新文章

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

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

                    <tfoot id='PL6vh'></tfoot>

                    • <bdo id='PL6vh'></bdo><ul id='PL6vh'></ul>
                  1. <legend id='PL6vh'><style id='PL6vh'><dir id='PL6vh'><q id='PL6vh'></q></dir></style></legend>