Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有点卡在这里。
我希望能够将已经上传到另一个文件夹的文件移动。
例如:
用户上传并转到名为“upload_temp/image.jpg”的临时文件夹,现在我想将其移动到“resources/user_images/profile/image.jpg”
我已经尝试过明显的 rename() ,但由于某种原因这不起作用。
尝试这个;-
chmod ("resources/user_images/profile/image.jpg", 0777); if (copy("upload_temp/image.jpg","resources/user_images/profile/image.jpg")) { unlink("upload_temp/image.jpg"); }