如何为数据库中的每个用户设置单个路径变量?

时间:2014-03-19 10:51:33

标签: php database path

基本上我希望用户将文件上传到服务器中各自的文件夹中,然后将文件/文件夹的url / name存储到数据库中。我已经设法将文件整体上传到一个文件夹,所以我需要根据用户分隔文件夹和位置

1 个答案:

答案 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...');
    }

    // ...
    ?>