PHP 文件上传路径问题

PHP File Upload Path Issue

这是我上传功能的起始代码,

function upload()
{
        $str_path = "../users/$this->user_name/$this->profile_image";

        if (!is_dir("../users")) {
            if (!mkdir("../users")) {
                throw new Exception("failed to create folder ../users");
            }
        }

        if (!is_dir("../users/$this->user_name")) {
            if (!mkdir("../users/$this->user_name")) {
                throw new Exception("failed to create folder ../users/$this->user_name");
            }
        }
}

有一个存放所有网页的主要文件夹,即“project”文件夹。我有一个模型文件夹,其中包含上传功能的class。然后我有一个调用上传功能的进程文件夹,它在主“项目”文件夹中创建文件夹并上传文件。

问题是我也在使用“projects/users/process”文件夹中的相同功能。上传路径在上传函数中设置,但该函数是从两个不同的位置调用的,因此当从“projects/users/process”调用时,它会在“projects/users”文件夹中创建一个文件夹,尽管我需要它来创建文件夹并始终在“项目

中上传

感谢@Masiorama,使用 $_SERVER['DOCUMENT_ROOT'] 解决了这个问题。函数的工作代码

public function upload_profile_image($src_path) {

    $base_path = $_SERVER['DOCUMENT_ROOT'] . "/php246/project";

    $str_path = "$base_path/users/$this->user_name/$this->profile_image";

    if (!is_dir("$base_path/users")) {
        if (!mkdir("$base_path/users")) {
            throw new Exception("failed to create folder $base_path/users");
        }
    }

    if (!is_dir("$base_path/users/$this->user_name")) {
        if (!mkdir("$base_path/users/$this->user_name")) {
            throw new Exception("failed to create folder $base_path/users/$this->user_name");
        }
    }        

    $result = @move_uploaded_file($src_path, $str_path);

    if (!$result) {
        throw new Exception("failed to uplaod file");
    }
}