0

我不知道这是否有效,但我有一个位于“Exam_app”文件夹中的脚本。现在在“Exam_app”文件夹中的另一个脚本中,我有一个确定文件路径的变量:

$destination_path = $_SERVER['DOCUMENT_ROOT']."/../uploads/"; 

现在我在“Exam_app”中有一个“上传”文件夹。我想知道的是,上面的文件路径是否意味着它将把用户带到“上传”文件夹中

4

1 回答 1

0

如果您的文件夹“上传”在“exam_app”内,请删除“../”!

我要么喜欢这个:

$destination_path = str_replace("//", "/", $_SERVER['DOCUMENT_ROOT']."/")."uploads";

或者这个(如果你的服务器有 php5.3 或更高版本):

$destination_path = __DIR__ . '/uploads/';

否则:

$destinaton_path = dirname(__FILE__) . '/uploads/';
于 2012-04-09T21:46:29.623 回答