本文介紹了如何上傳 &使用所需名稱保存文件的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
限時送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);
這篇關于如何上傳 &使用所需名稱保存文件的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!