How To Move A File Safely In PHP:

Safely move a file in PHP:
1 2 3 |
if (copy("/your/source/file","/your/destination/newfile")) { unlink("/your/source/file"); } |
![]() |
Safely move a file in PHP:
1 2 3 |
if (copy("/your/source/file","/your/destination/newfile")) { unlink("/your/source/file"); } |
Leave Your Comment
All fields marked with "*" are required.