我第一次使用php,我有任务为使用php的单独用户创建一个单独的目录。 谁能请帮忙。 提前谢谢。
<?php
mkdir("/".$username."/", 0700);
$target_path = "/".$username."/";
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
echo "<h1>The file ". basename( $_FILES['uploadedfile']['name']).
" has been uploaded</h1>";
echo "<h1><a href='claim_try.php'>Back to claim page.</a></h1>";
} else{
echo "<h1>There was an error uploading the file, please try again!</h1>";
}
?>
答案 0 :(得分:0)
试试这个,
if (!file_exists($usersname)) {
// Makes directory if not exist
//mkdir('directory_Name', 0777, true);
mkdir($usersname,0777, true);
}
请阅读 mkdir
答案 1 :(得分:0)
我解决了我的问题,我能够为特定用户创建单独的目录。我根据时间创建目录并将文件存储在其中