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"); }