PHP:复制和移动图像

时间:2015-03-16 17:53:20

标签: php file-upload

正如标题所说,我如何复制图像的目录是这样的:

img/user.png

并且假设我们要将此图像复制到

user_files/username/putfilehere.png

我发现了一些很长的路线,但我相信可以用几行代码来实现。

1 个答案:

答案 0 :(得分:0)

假设我们的脚本位于目录/ www /中,您希望将图像从/www/img/user.png复制到/www/user_files/username/putfilehere.png。在这种情况下,它很容易做到:

copy('./img/user.png', './user_files/username/putfilehere.png');