0

我有这样的文件夹结构

public_html
     /images

outside
    /file_uploader.php

public_html就是webroot文件夹。

outside位于 webroot 文件夹之外。

所以,我想在文件夹中上传文件 public_html/images

我在文件中有outside/file_uploader.php 这段代码:

move_uploaded_file(
     $_FILES['img_name']['tmp_name'], 
     absolute/path/to/public_html/images/folder
);

但这会返回错误,那个Unable to access to public_html/images文件夹。

问题:如何从outside_of_webroot_filein上传文件webroot\folder

4

1 回答 1

0
// see if you have permission to write to this folder
if(!is_writable(absolute/path/to/..)) {
    chmod()
}

move_uploaded_file()
于 2013-02-04T12:39:58.113 回答