PHP move_uploaded_file本地路径

时间:2012-09-12 13:58:32

标签: php apache upload alias

是否可以向方法move_uploaded_file添加本地目的地?示例C:/foo/

我想上传文件,但要将它们存储在根文件夹之外,并使用别名来访问新目的地。

2 个答案:

答案 0 :(得分:1)

这是定义: bool move_uploaded_file(string $ filename,string $ destination)

在$ destination中,您可以放置​​任何有效路径。 确保目录安全性允许为webserver运行的用户编写。

答案 1 :(得分:0)

发现问题。由于我将别名bar指向我的C:/foo/路径,因此我在PHP代码中将bar添加到$destination参数。

如果我将参数$destination设置为C:/foo/

,则此功能正常