在將上傳的檔案儲存到目錄之前重新命名
在此上下文中,move_uploaded_file() 函數處理將上傳的檔案儲存在指定目錄。若要指定隨機數字為檔案名,請進行以下調整:
<br>$temp =explode(".", $_FILES"file");<br>$newfilename =圓形(微時間(真))。 '.' 。 end($temp);<br>move_uploaded_file($_FILES["file"]["tmp_name"], "../img/imageDirectory/" . $newfilename);<br>
修改後的程式碼完成了以下:
以上是如何在將上傳的檔案儲存到目錄之前重命名它們?的詳細內容。更多資訊請關注PHP中文網其他相關文章!