0
我有一個問題,如何獲取動態創建的目錄的名稱? 說明 - : 我創建一個文件上傳類型和一個提交按鈕,每當我點擊提交按鈕然後創建目錄如果不存在與登錄用戶名。但文件沒有存儲在那裏,因爲我無法獲得存儲該文件的目錄名稱。 我想如何得到這個名稱哪個函數在php中用來獲取動態創建的目錄名稱。如何在php中獲取目錄名
//$image = $_GET['upload'];
$upload = $_POST["submit"];
session_start();
$_SESSION['x'] = "username";
$path = "upload/";
$image_name = $_FILES["upload"]["name"];
$temp = $_FILES["upload"]["tmp_name"];
if(isset($upload)){
mkdir($path.$_SESSION['x']);
$new = ""//what function I used here to fetch the name of directory in last step
move_uploaded_file($temp,$new.$image_name);
}
更多具有PHP知識的人會將你的問題標記爲PHP。 :) – animuson