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"); } |
Categories: How-To's, Technology Tags: Copy, howto, Move, Mv, php, Rename, tips, Unlink
|
No comments
Copyright © 2005-2025 Eric Michael Stone | Random Thoughts, Whims and Fancies…. Powered by WordPress