我有这样的文件夹结构
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_file
in上传文件webroot\folder
?