基本上我希望用户将文件上传到服务器中各自的文件夹中,然后将文件/文件夹的url / name存储到数据库中。我已经设法将文件整体上传到一个文件夹,所以我需要根据用户分隔文件夹和位置
答案 0 :(得分:0)
要创建文件夹,您可以使用以下代码并在数据库中存储相同的$结构
<?php
// Desired folder structure
$structure = './depth1/$username';
// To create the nested structure, the $recursive parameter
// to mkdir() must be specified.
if (!mkdir($structure, 0777, true)) {
die('Failed to create folders...');
}
// ...
?>