Reputation: 103
how do I clone and rename a file with php.
I need to take.
thumb_123.jpg
Copy it.
Rename it to thumb_456.jpg
I can do the renaming just fine with rename(). Its the copying that I don't get.
rename()
Upvotes: 6
Views: 3967
Reputation: 212522
copy('thumb_123.jpg','thumb_456.jpg')
Upvotes: 20