Say I've got a file test.php in foo directory as well as bar. How can I replace bar/test.php with foo/test.php using PHP? I'm on Windows XP, a cross platform solution would be great but windows prefered.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You could use the
|
|||
|
|
|
copy will do this. Please check the php-manual. Simple Google search should answer your last two questions ;) |
||||
|
|
|
You could use the rename() function :
This however will move the file not copy |
|||
|
|